freebsd-ports/devel/whups/files/httpd.conf.whups
Edwin Groothuis 9dff545495 New port devel/whups: a web-based bug tracking system
PR:		ports/35520
Submitted by:	Thierry Thomas <thierry@pompo.net>
2003-01-16 14:14:47 +00:00

31 lines
802 B
Text

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