debian-koji/hub/httpd.conf
2011-03-18 13:57:38 -04:00

39 lines
1 KiB
ApacheConf

#
# koji-hub is an xmlrpc interface to the Koji database
#
Alias /kojihub "/usr/share/koji-hub/XMLRPC"
Alias /kojifiles "/mnt/koji/"
<Directory /usr/share/koji-hub>
SetHandler mod_python
PythonHandler kojixmlrpc
PythonOption ConfigFile /etc/koji-hub/hub.conf
PythonDebug Off
# autoreload is mostly useless to us (it would only reload kojixmlrpc.py)
PythonAutoReload Off
</Directory>
<Directory "/mnt/koji">
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# uncomment this to enable authentication via SSL client certificates
# <Location /kojihub/ssllogin>
# SSLVerifyClient require
# SSLVerifyDepth 10
# SSLOptions +StdEnvVars
# </Location>
# If you need to support koji < 1.4.0 clients using SSL authentication, then use the following instead:
# <Location /kojihub>
# SSLOptions +StdEnvVars
# </Location>
# In this case, you will need to enable these options globally (in ssl.conf):
# SSLVerifyClient require
# SSLVerifyDepth 10