Sophie

Sophie

distrib > * > 2008.0 > x86_64 > by-pkgid > 536883311126522465003671a1b79f6e > files > 1

scgi-1.12-1mdv2008.0.src.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>