Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 40dc45aa344382d7aa66415fbd353f75 > files > 1

apache-mod_scgi-1.13-5mdv2010.0.i586.rpm

<IfDefine HAVE_SCGI>
    <IfModule !mod_scgi.c>
	LoadModule scgi_module	extramodules/mod_scgi.so
    </IfModule>
</IfDefine>

<IfModule mod_scgi.c>

    # SCGIMount - path prefix and address of SCGI server
    # Set up a location to be served by an SCGI server process
    SCGIMount /dynamic/ 127.0.0.1:4000

    # The deprecated way of delegating requests to an SCGI server is as
    # follows:
    <Location "/dynamic">

        # SCGIHandler - On or Off to enable or disable the SCGI handler
	# Enable SCGI delegation
	SCGIHandler On

        # SCGIServer - Address and port of an SCGI server (e.g. localhost:4000)
	# Delegate requests in the "/dynamic" path to daemon on local
	# server, port 4000
	SCGIServer 127.0.0.1:4000

        # SCGIServerTimeout - Timeout (in seconds) for communication with the SCGI server.
	SCGIServerTimeout 10

    </Location>

</IfModule>