blob: c927a54ec67ff6ede9a4ee89b88bfc1c93a3226a (
plain)
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 WHUPS
#
# For security, don't serve pages from the WHUPS configuration and
# library directories.
#
<Directory "/home/httpd/html/horde/whups/config">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/whups/lib">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/whups/locale">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/whups/po">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/whups/scripts">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/whups/templates">
order deny,allow
deny from all
</Directory>
# End of WHUPS configuration ================
|