ports/textproc/cdsware/files/httpd.conf.cdsware
Thierry Thomas 2b767d7306 Add cdsware 0.3.2, CERN Document Server Software.
This is another "monster" from CERN, but if you are looking
for a document server, there is no free alternative.
2004-07-11 14:34:37 +00:00

23 lines
685 B
Text

# This is included in Apache's httpd.conf for CDSware
<Directory %%PREFIX%%/%%WEBDIR%%>
AddDefaultCharset UTF-8
DirectoryIndex index.en.html index.html index.py index.en.php index.php
AddHandler python-program .py
PythonHandler mod_python.publisher
PythonDebug On
<IfModule mod_php4.c>
php_flag log_errors = on
php_flag display_errors = off
php_flag expose_php = off
php_value max_execution_time 160
php_flag register_globals = on
php_flag short_open_tag = on
</IfModule>
</Directory>
<IfModule mod_alias.c>
Alias /%%WALIAS%%/ "%%PREFIX%%/%%WEBDIR%%/"
</IfModule>
# End of CDSW configuration ================