freebsd-ports/devel/horde-chora/files/httpd.conf.chora
Kevin Lo 588b40399c Initial imort of chora 1.0
Chora is the Horde CVS web-viewer.

PR: 34651
Submitted by: Thierry Thomas <thierry@pompo.net>
2002-02-09 08:50:32 +00:00

27 lines
699 B
Text

# 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 ================