diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-03-02 03:34:49 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-03-02 03:41:04 +0100 |
commit | b477a3f4d3c2aea591684ee880b0deb414070244 (patch) | |
tree | 85e6e5779ad0f485d4ed5e233336e2f047404ffe /www-apps/davical/files/vhost-example | |
parent | 3413b3adaf242a639bdcae7bb0c8afbc4b5187a0 (diff) | |
download | overlay-b477a3f4d3c2aea591684ee880b0deb414070244.tar.gz overlay-b477a3f4d3c2aea591684ee880b0deb414070244.tar.xz overlay-b477a3f4d3c2aea591684ee880b0deb414070244.zip |
davical: forked from sunrise
changed php library path, the php-lib-r1.eclass now installs the libraries to
/usr/share/php instead of /usr/share/php5
Diffstat (limited to 'www-apps/davical/files/vhost-example')
-rw-r--r-- | www-apps/davical/files/vhost-example | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www-apps/davical/files/vhost-example b/www-apps/davical/files/vhost-example new file mode 100644 index 0000000..d6f0da2 --- /dev/null +++ b/www-apps/davical/files/vhost-example @@ -0,0 +1,16 @@ +<VirtualHost 123.4.56.78 > + ServerName davical.example.net + + DocumentRoot /var/www/myvhost/htdocs + + <Directory /var/www/myvhost/htdocs/> + AllowOverride None + Order allow,deny + Allow from all + </Directory> + + php_value magic_quotes_gpc 0 + php_value register_globals 0 + php_value error_reporting "E_ALL & ~E_NOTICE" + php_value default_charset "utf-8" +</VirtualHost> |