bugzilla/bugzilla-httpd-conf
Emmanuel Seyman c1f8957388 - Update to 4.4.8 (fixes regressions in 4.4.7 which itself
fixed security flaws) (CVE-2014-1571, CVE-2014-8630)
- Remove bundled binary files (#1000245)
- Add webdot directory perms to apache configuration
2015-01-31 22:34:12 +01:00

23 lines
696 B
Text

Alias /var/lib/bugzilla/data/webdot /var/lib/bugzilla/data/webdot
Alias /bugzilla /usr/share/bugzilla
<Directory /usr/share/bugzilla>
<IfModule mod_authz_core.c>
# Bugzilla will be accessible to all machines in your network
# Replace with "Require local" if you want access to be restricted
# to this machine.
Require all granted
</IfModule>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI +FollowSymLinks
DirectoryIndex index.cgi index.html
AllowOverride Limit Options FileInfo Indexes
AddType application/vnd.mozilla.xul+xml .xul
AddType application/rdf+xml .rdf
</Directory>
<Directory /var/lib/bugzilla/data/webdot>
Require all granted
</Directory>