31 lines
916 B
ApacheConf
31 lines
916 B
ApacheConf
#
|
|
# koji-hub is an xmlrpc interface to the Koji database
|
|
#
|
|
|
|
Alias /kojihub "/usr/share/koji-hub/XMLRPC"
|
|
|
|
<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>
|
|
|
|
# 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
|