freebsd-ports/deskutils/nag/files/httpd.conf.nag
SADA Kenji 2209bc25ca Add new port: deskutils/nag - Horde's task list manager.
PR:	ports/36908
Submitted by:	Thierry Thomas <thierry@pompo.net>
2002-05-18 00:22:48 +00:00

31 lines
784 B
Text

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