aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2017-04-20 16:40:56 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2017-04-20 16:41:04 +0200
commit13bfe0e80bbc19fa862e1eb7befed52da0c6f499 (patch)
treedd4d387e83769bcb33396c1e2d708f0e3be40042 /modules/bugzilla
parent9c9a84898b868477e06d0812e01c77283f8d06ec (diff)
downloadpuppet-13bfe0e80bbc19fa862e1eb7befed52da0c6f499.tar
puppet-13bfe0e80bbc19fa862e1eb7befed52da0c6f499.tar.gz
puppet-13bfe0e80bbc19fa862e1eb7befed52da0c6f499.tar.bz2
puppet-13bfe0e80bbc19fa862e1eb7befed52da0c6f499.tar.xz
puppet-13bfe0e80bbc19fa862e1eb7befed52da0c6f499.zip
bugzilla: Fix apache config file
Diffstat (limited to 'modules/bugzilla')
-rw-r--r--modules/bugzilla/templates/webapp_bugzilla.conf62
1 files changed, 0 insertions, 62 deletions
diff --git a/modules/bugzilla/templates/webapp_bugzilla.conf b/modules/bugzilla/templates/webapp_bugzilla.conf
index b68aa200..8c453903 100644
--- a/modules/bugzilla/templates/webapp_bugzilla.conf
+++ b/modules/bugzilla/templates/webapp_bugzilla.conf
@@ -9,65 +9,3 @@ path_data_directory = "/usr/share/bugzilla"
AllowOverride All
</Directory>
-# The duplicates.rdf must be accessible, as it is used by
-# duplicates.xul
-<Directory <%= path_data_directory %>>
- <Files duplicates.rdf>
- <IfModule mod_authz_core.c>
- # Apache 2.4
- Require all granted
- </IfModule>
- <IfModule !mod_authz_core.c>
- # Apache 2.2
- Order allow,deny
- Allow from all
- </IfModule>
- </Files>
-</Directory>
-
-# The png files locally created locally must be accessible
-<Directory <%= path_data_directory %>/webdot>
- <FilesMatch \.png$>
- <IfModule mod_authz_core.c>
- # Apache 2.4
- Require all granted
- </IfModule>
- <IfModule !mod_authz_core.c>
- # Apache 2.2
- Order allow,deny
- Allow from all
- </IfModule>
- </FilesMatch>
-</Directory>
-
-Alias /graphs/ <%= path_data_directory %>/graphs/
-<Directory <%= path_data_directory %>/graphs>
- <FilesMatch \.png$>
- <IfModule mod_authz_core.c>
- # Apache 2.4
- Require all granted
- </IfModule>
- <IfModule !mod_authz_core.c>
- # Apache 2.2
- Order allow,deny
- Allow from all
- </IfModule>
- </FilesMatch>
-</Directory>
-
-# This should work automatically, but perhaps something
-# in our Bugzilla packaging breaks this?
-Alias /extensions/Mageia/web/ <%= scope.lookupvar("bugzilla::extension_location") %>/web/
-<Directory <%= scope.lookupvar("bugzilla::extension_location") %>/web/>
- <FilesMatch \.png$>
- <IfModule mod_authz_core.c>
- # Apache 2.4
- Require all granted
- </IfModule>
- <IfModule !mod_authz_core.c>
- # Apache 2.2
- Order allow,deny
- Allow from all
- </IfModule>
- </FilesMatch>
-</Directory>