diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-26 10:22:58 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-26 10:22:58 +0000 |
commit | de68a058bfd96eec3e7101d045e39163958bbb96 (patch) | |
tree | 5a2ac484713fde967c89c6400d0cbed39573f2e1 /www/horde4-base/files/httpd.conf.horde | |
parent | 799d98ac2d47e04c294133f7e7f32ac463a1c880 (diff) |
Upgrade to 3.0.
Horde Version 3 differs from the 2.x releases in many ways, including
the following:
* Full support for groups and arbitrary permissions.
* Completely rewritten, fully RFC-compliant MIME system with many
new MIME viewers.
* Many i18n improvements, including full charset support for the whole
framework.
* User customizable portal page.
* Theme support.
* Global personal categories and category colors.
* Access (shortcut) keys.
* Dynamically updating tree menu for applications, including Mozilla
sidebar support.
* XML-based application configuration through a graphical user interface.
* Forms creation and validation API.
* Template engine.
* Crypt API with support for PGP/GPG and S/MIME.
* XML-RPC and SOAP server and client, experimental SyncML support.
* Improved notification system.
* Many new APIs like Compress, Image, PDF, History, iCalendar, SyncML,
CLI, Version control, NLS, Timer, and SVG.
* and many more...
This is a resurrection of the previous www/horde, upgraded from www/horde2.
PR: ports/75434
Submitted by: /me
Notes
Notes:
svn path=/head/; revision=125195
Diffstat (limited to 'www/horde4-base/files/httpd.conf.horde')
-rw-r--r-- | www/horde4-base/files/httpd.conf.horde | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/www/horde4-base/files/httpd.conf.horde b/www/horde4-base/files/httpd.conf.horde new file mode 100644 index 000000000000..0bd4b621c52b --- /dev/null +++ b/www/horde4-base/files/httpd.conf.horde @@ -0,0 +1,57 @@ +# This is included in Apache's httpd.conf for Horde + +<Directory /home/httpd/html/horde> + Options Indexes FollowSymLinks + AllowOverride None + order allow,deny + allow from all + <IfModule mod_php4.c> + php_value include_path '/home/httpd/phplib:.' + php_flag register_globals On + php_flag magic_quotes_gpc Off + php_flag track_vars On + php_value memory_limit 16M + </IfModule> +</Directory> + +<IfModule mod_alias.c> + Alias /horde/ "/home/httpd/html/horde/" +</IfModule> +# +# For security, don't serve pages from the Horde configuration and library +# directories. +# +#<Directory "/home/httpd/html/horde/admin"> +# Order deny,allow +# Deny from all +#</Directory> +<Directory "/home/httpd/html/horde/config"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/lib"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/locale"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/po"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/scripts"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/templates"> + Order deny,allow + Deny from all +</Directory> +<Directory "/home/httpd/html/horde/util"> + Order deny,allow + Deny from all +</Directory> +# End of Horde configuration ================ + |