freebsd-ports/deskutils/mnemo/files/httpd.conf.mnemo
Edwin Groothuis 956668e909 New port: deskutils/mnemo, a web-based notes and memos application.
Mnemo is the Horde notes and memos application. It lets
	users keep free-text notes and other bits of information
	which doesn't fit as a contact, a todo item, an event, etc.
	It is very similar in functionality to the Palm Memo
	application.

PR:		ports/39204
Submitted by:	Thierry Thomas <thierry@pompo.net>
2003-01-18 05:34:21 +00:00

31 lines
802 B
Text

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