]> git.pld-linux.org Git - packages/bacula-web.git/blob - apache.conf
- drop obsolete and outdated manual inclusion of rpm macros
[packages/bacula-web.git] / apache.conf
1 Alias /bacula-web/cache/ /var/cache/bacula-web/
2 Alias /bacula-web /usr/share/bacula-web
3
4 <Directory /usr/share/bacula-web>
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>
14 </Directory>
15
16 <Directory /var/cache/bacula-web>
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>
31 </Directory>
This page took 0.039502 seconds and 3 git commands to generate.