lemonldap-ng/fastcgi-server/default/llng-fastcgi-server

35 lines
820 B
Plaintext
Raw Normal View History

2016-02-04 23:10:17 +01:00
# Number of process (default: 7)
#NPROC = 7
2022-01-10 10:19:09 +01:00
# Socket to listen to (UDS or TCP)
SOCKET=__FASTCGISOCKDIR__/llng-fastcgi.sock
2016-02-04 23:10:17 +01:00
# Pid file
PID=__FASTCGISOCKDIR__/llng-fastcgi-server.pid
2016-02-04 23:10:17 +01:00
2022-04-03 21:01:04 +02:00
# USER and GROUP
USER=__USER__
GROUP=__GROUP__
# Custom functions file
#CUSTOM_FUNCTIONS_FILE=/var/lib/lemonldap-ng/myfile.pm
2016-06-09 13:45:08 +02:00
# Engine (default to FCGI)
2018-05-17 17:15:29 +02:00
#ENGINE=FCGI
2016-06-09 13:45:08 +02:00
#ENGINE=AnyEvent::FCGI
2018-04-02 09:03:56 +02:00
#ENGINE=FCGI::Async
#ENGINE=FCGI::EV
#ENGINE=FCGI::Engine
2018-05-17 17:15:29 +02:00
#ENGINE=FCGI::Engine::ProcManager
# Process recycling
# When running with Perl 5.16, you might encounter memory
# leaks when running the FastCGI server
# By default, we restart each worker after 500 requests to mitigate
# the leak. You can finetune these settings here.
# See also FCGI::ProcManager::Constrained(3)
PM_MAX_REQUESTS=500
#PM_SIZECHECK_NUM_REQUESTS=10
#PM_MAX_SIZE=100000