27 lines
604 B
Text
27 lines
604 B
Text
#
|
|
# koji-hub is an xmlrpc interface to the Koji database
|
|
#
|
|
|
|
Alias /kojihub /usr/share/koji-hub/kojixmlrpc.py
|
|
|
|
<Directory "/usr/share/koji-hub">
|
|
Options ExecCGI
|
|
SetHandler wsgi-script
|
|
Require all granted
|
|
</Directory>
|
|
|
|
|
|
<Location /kojihub/ssllogin>
|
|
SSLVerifyClient require
|
|
SSLVerifyDepth 10
|
|
SSLOptions +StdEnvVars
|
|
</Location>
|
|
|
|
# uncomment this to enable authentication via SSL client certificates
|
|
#<Location /kojihub>
|
|
# SSLOptions +StdEnvVars
|
|
#</Location>
|
|
# these options must be enabled globally (in ssl.conf)
|
|
# SSLVerifyClient require
|
|
# SSLVerifyDepth 10
|
|
|