aboutsummaryrefslogtreecommitdiff
path: root/deskutils/horde-nag/files/httpd.conf.nag
blob: c5279c8245fa1d29262bdb41b579895d950223eb (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 Nag
#
# For security, don't serve pages from the Nag configuration and
# library directories.
#
<Directory "/home/httpd/html/horde/nag/config">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/nag/lib">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/nag/locale">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/nag/po">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/nag/scripts">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/nag/templates">
    order deny,allow
    deny from all
</Directory>
# End of Nag configuration ================