blob: 3fe09b370849ce894b6fcc29ff48f5a63ea848c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# This is included in Apache's httpd.conf for ansel
#
# For security, don't serve pages from the ansel configuration and
# library directories.
#
<Directory "/home/httpd/html/horde/ansel/config">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/ansel/lib">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/ansel/locale">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/ansel/po">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/ansel/scripts">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/ansel/templates">
order deny,allow
deny from all
</Directory>
# End of ansel configuration ================
|