]> git.pld-linux.org Git - packages/bacula-web.git/blame - apache.conf
- drop obsolete and outdated manual inclusion of rpm macros
[packages/bacula-web.git] / apache.conf
CommitLineData
97184a12 1Alias /bacula-web/cache/ /var/cache/bacula-web/
9ebe370b 2Alias /bacula-web /usr/share/bacula-web
5fb85618 3
9ebe370b 4<Directory /usr/share/bacula-web>
5fb85618
ER
5 # Apache < 2.4
6 <IfModule !mod_authz_core.c>
7 Order allow,deny
8 Allow from all
9 </IfModule>
10 # Apache 2.4
11 <IfModule mod_authz_core.c>
12 Require all granted
13 </IfModule>
eba56fc5
ER
14</Directory>
15
138953e5 16<Directory /var/cache/bacula-web>
5fb85618
ER
17 # Apache < 2.4
18 <IfModule !mod_authz_core.c>
19 Deny from all
20 <Files *.png>
21 Allow from all
22 </Files>
23 </IfModule>
24 # Apache 2.4
25 <IfModule mod_authz_core.c>
26 Require all denied
27 <Files *.png>
28 Require all granted
29 </Files>
30 </IfModule>
138953e5 31</Directory>
This page took 0.060864 seconds and 4 git commands to generate.