Sophie

Sophie

distrib > Mandriva > 2007.1 > x86_64 > by-pkgid > 99c02638025199754f0fafa5fe5e9357 > files > 1

apache-mod_fcgid-2.0-2mdv2007.1.src.rpm

<IfDefine HAVE_FCGID>
    <IfModule !mod_fcgid.c>
	LoadModule fcgid_module	extramodules/mod_fcgid.so
    </IfModule>
</IfDefine>

<IfModule mod_fcgid.c>

    # IdleTimeout - an idle fastcgi application will be killed after IdleTimeout

    # IdleScanInterval - scan interval for idle timeout process

    # BusyTimeout - a fastcgi application will be killed after handling a request for BusyTimeout

    # BusyScanInterval - scan interval for busy timeout process

    # ErrorScanInterval - scan interval for exited process

    # ZombieScanInterval - scan interval for zombiz process

    # ProcessLifeTime - fastcgi application lifetime

    # SocketPath - fastcgi socket file path

    # SpawnScoreUpLimit - Spawn score up limit

    # SpawnScore - Score of spawn

    # TerminationScore - Score of termination

    # MaxProcessCount - Max total process count

    # DefaultMaxClassProcessCount - Max process count of one class of fastcgi application

    # OutputBufferSize - CGI output buffer size

    # DefaultInitEnv - an environment variable name and optional value to pass to FastCGI.

    # FCGIWrapper - The CGI wrapper setting

    # IPCConnectTimeout - Connect timeout to fastcgi server
    IPCCommTimeout 40

    # IPCCommTimeout - Communication timeout to fastcgi server
    IPCConnectTimeout 10

    # Use FastCGI to process .fcg .fcgi & .fpl scripts
    # Don't do this if mod_fastcgi is present, as it will try to do the same thing
    <IfModule !mod_fastcgi.c>
	AddHandler fcgid-script fcg fcgi fpl
    </IfModule>

    # Sane place to put sockets
    SocketPath /var/lib/apache-mod_fcgid

</IfModule>