1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-19 08:13:21 +00:00
freebsd-ports/mail/turba/files/httpd.conf.turba
Ying-Chieh Liao 42d7a469cd upgrade to RC3
PR:		32516
Submitted by:	maintainer
2001-12-12 20:09:16 +00:00

32 lines
802 B
Plaintext

# This is included in Apache's httpd.conf for Turba
#
# For security, don't serve pages from the Turba configuration and
# library directories.
#
<Directory "/home/httpd/html/horde/turba/config">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/turba/lib">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/turba/locale">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/turba/po">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/turba/scripts">
order deny,allow
deny from all
</Directory>
<Directory "/home/httpd/html/horde/turba/templates">
order deny,allow
deny from all
</Directory>
# End of Turba configuration ================