Tryag File Manager
Home
-
Turbo Force
Current Path :
/
proc
/
self
/
root
/
etc
/
httpd
/
conf.d
/
Upload File :
New :
File
Dir
//proc/self/root/etc/httpd/conf.d/mod_fcgid.conf
# Enable and Configure the FastCGI Module. LoadModule fcgid_module /usr/lib/httpd/modules/mod_fcgid.so # Set the socket directory to /tmp. FcgidIPCDir /tmp # Add the type. AddHandler fcgid-script .fcgi # Cause a restart after a few requests so that # buggy applications do not leak memory. FcgidMaxRequestsPerProcess 500 # Set an Environment Variable so it's easy to # know we're running under FCGI. FcgidInitialEnv WDC_EXEC_FCGID yes # Maximum total number of FastCGI Processes that # we can run server wide. FcgidMaxProcesses 2000 # We Set MIN processes to 0, so that the entire thing # is killed if it goes idle. The default is three, # but additionals will spawn as needed. This keeps us from # running 2 extra processes per CGI when there are no subrequests. FcgidMinProcessesPerClass 0 # Maximum number of process that can start # from the same comand line. This really limits # users to eight PHP processes per site as we use # an internal /system-cgi/.. FcgidMaxProcessesPerClass 8 # Idle processes that exist longer than this duration # will be terminated. When we don't need the children, # they'll die off. FcgidIdleTimeout 120 # Max length a process can live from startup. Anything more than # this and it's terminated. This is the default and there's no # reason to change this. If we need the children, there's no # benefit to killing them early. FcgidProcessLifetime 3600 # How often the module checks for idle processes. The # default is 120, but since our idle timeout is only 120, # this is set lower. The max amount of time a process may # run idle, then, is this plus FcgidIdleTimeout. FcgidIdleScanInterval 30 # The amount of time mod_fcgid will wait for a CGI script # to respond. The default is 40, which seems a bit low # for a shared environment. FcgidIOTimeout 90