openSUSE-release-tools/abichecker/apache/opensuse-abi-checker.conf.in
Ludwig Nussel a9a6dcb617 Add access control to abichecker apache config
The apache config file for abichecker needs to include access control
rules, otherwise apache will deny access.
2016-04-05 16:12:23 +02:00

24 lines
743 B
ApacheConf

<VirtualHost *:80>
ServerName abichecker.suse.de
WSGIDaemonProcess opensuse-abi-checker user=_opensuse.org-abi-checker group=nogroup display-name=%{GROUP} home=/usr/share/osc-plugin-factory/abichecker
WSGIProcessGroup opensuse-abi-checker
WSGIScriptAlias / /usr/share/osc-plugin-factory/abichecker/abichecker-web.py
<Directory "/usr/share/osc-plugin-factory/abichecker">
<Files abichecker-web.py>
<IfModule !mod_access_compat.c>
Require all granted
</IfModule>
<IfModule mod_access_compat.c>
Order allow,deny
Allow from all
</IfModule>
</Files>
</Directory>
</VirtualHost>
# vim: syntax=apache sw=4 et