######################################################################## # web2ldap under the control of Apache with mod_fastcgi # # application is access through following URL: # http:///web2ldap-fcgi/web2ldap.py # # See mod_fastcgi docs on: # http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html ######################################################################## # Load and install module mod_fastcgi #LoadModule fastcgi_module /usr/lib/apache/mod_fastcgi.so #AddModule mod_fastcgi.c Alias /web2ldap-fcgi /opt/web2ldap/fcgi Alias /web2ldap-doc /opt/web2ldap/htdocs # Using TCP connection #FastCgiServer /opt/web2ldap/fcgi/web2ldap.py -port 11760 -idle-timeout 600 -appConnTimeout 0 # Using Unix domain socket FastCgiServer /opt/web2ldap/fcgi/web2ldap.py -socket /tmp/web2ldap-fcgi-socket -processes 1 -idle-timeout 600 -appConnTimeout 0 # Tell mod_ssl to set the SSL standard env vars SSLOptions +StdEnvVars Order allow,deny Allow from 127.0.0.1 DirectoryIndex web2ldap.html Order allow,deny Allow from All