summaryrefslogtreecommitdiff
path: root/devel/horde-chora/files/httpd.conf.chora
blob: 95afb9c8db4cf1420df6bd61f3082381e55d54d4 (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
# This is included in Apache's httpd.conf for Chora
#
# For security, don't serve pages from the Chora configuration and
# library directories.
#
<Directory "/home/httpd/html/horde/chora/config">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/chora/lib">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/chora/locale">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/chora/po">
    order deny,allow
    deny from all
</Directory>
<Directory "/home/httpd/html/horde/chora/templates">
    order deny,allow
    deny from all
</Directory>
# End of Chora configuration ================