Project

General

Profile

Support #2405 » fcgid.conf

Anonymous, 11/11/2013 06:33 PM

 
<IfModule mod_fcgid.c>
AddHandler fcgid-script .wt
AddHandler fcgid-script .lnx
AddHandler fcgid-script .fcgi


#SocketPath /var/lib/apache2/fcgid/sock
#FcgidIPCDir /var/run/wt
FcgidIPCDir /var/lib/apache2/fcgid/sock

#IdleTimeout -1
#FcgidIdleTimeout 3600

#FcgidIOTimeout 40
#FcgidIOTimeout 3600

#ProcessLifeTime -1
#FcgidProcessLifeTime 3600

#MaxProcessCount 10 /* default is 1000 */
#FcgidMaxProcesses 1000
#DefaultMaxClassProcessCount 10 /* default is 100 */
#FcgidMaxProcessesPerClass 100

#DefaultMinClassProcessCount 1 /* default is 3 */
#FcgidMinProcessesPerClass 3


#FcgidConnecttimeout 20 /* default is 3 */
#FcgidConnectTimeout 3600


# IdleTimeout n (300 seconds)
# An idle fastcgi application will be terminated after IdleTimeout seconds.
#FcgidIdleTimeout 900

# IdleScanInterval n (120 seconds)
# The scan interval for idle fastcgi applications.
#FcgidIdleScanInterval 120

# BusyTimeout n (300 seconds)
# A fastcgi application will be terminated if handing a single request
# longer than busy timeout.
#FcgidBusyTimeout 300

# BusyScanInterval n (120 seconds)
# The scan interval for busy timeout fastcgi applications.
#FcgidBusyScanInterval 120

# ErrorScanInterval n (3 seconds)
# The scan interval for exit pending fastcgi applications. fastcgi
# applications will be terminated within this scanning.
#FcgidErrorScanInterval 90

# ZombieScanInterval n (3 seconds)
# The scan interval for zombie process.
#FcgidZombieScanInterval 90

# ProcessLifeTime n (3600 seconds)
# A fastcgi application will be terminated if lifetime expired,
# even no error is detected.
#FcgidProcessLifeTime 3600

# SocketPath path (logs/fcgidsock)
# The directory to put the UNIX domain socket. (UNIX only)
# This directory should be writable only by apache user
#FcgidIPCDir /var/run/wt

# SpawnScoreUpLimit n (10)
# The spawn-speed control score up water limit. Score increases while
# a process is spawned or terminated, and decreases as time progresses;
# while the score is higher than SpawnScoreUpLimit, the spawning will be
# held for a while. The higher this number is, the higher speed of the
# spawning can be.
#FcgidSpawnScoreUpLimit 10

# SpawnScore n (1)
# The weight of spawning. This weight will be plused to the spawn-control
# score on every spawn. The higher this number is, the lower speed of
# spawning can be.
#FcgidSpawnScore 1

# TerminationScore n (2)
# The weight of termination. This weight will be plused to the score while
# fastcgi process terminates. The higher this number is, the lower speed
# of spawning can be.
#FcgidTerminationScore 2

# MaxProcessCount n (1000)
# The max count of total fastcgi process count.
#FcgidMaxProcesses 128

# DefaultMaxClassProcessCount n (100)
# The maximum number of fastcgi application instances allowed to run for
# particular one fastcgi application.
#FcgidMaxProcessesPerClass 64

# DefaultMinClassProcessCount n (3)
# The minimum number of fastcgi application instances for any one fastcgi
# application.
# Idle fastcgi will not be killed if their count is less than n
# Set this to 0, and tweak IdleTimeout
#FcgidMinProcessesPerClass 1

# DefaultInitEnv env_name env_value
# The default environment variables before a fastcgi application
# is spawned. You can set this configuration more than once.

# IPCConnectTimeout n (3 seconds)
# The connect timeout to a fastcgi application.
#FcgidConnectTimeout 9

# IPCCommTimeout n (20 seconds)
# The communication timeout to a fastcgi application. Please increase this
# value if your CGI have a slow initialization or slow respond.
#FcgidIOTimeout 60

# OutputBufferSize n (64k bytes)
# CGI output cache buffer size.

# PHP_Fix_Pathinfo_Enable n(n=0/1, default 0)
# If you are using PHP and set cgi.fix_pathinfo=1 in php.ini, set PHP_Fix_Pathinfo_Enable 1.
# From php.ini:
# cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
# previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
# what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
# this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
# of zero causes PHP to behave as before. Default is zero. You should fix your scripts
# to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
# cgi.fix_pathinfo=1
#PHP_Fix_Pathinfo_Enable 1

# MaxRequestsPerProcess parameter allows mod_fcgid to exit after handling a certain
# number of requests, similar to the existing ProcessLifeTime option.
#FcgidMaxRequestsPerProcess 1000
</IfModule>
(2-2/7)