diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2012-04-11 01:37:46 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2012-04-11 01:37:46 -0700 |
commit | a8cb1e015bd18ea85d95cf82f48e00c755fea9c3 (patch) | |
tree | 26f9407299862102a067293f05396e338299d80b /pinyconfigs/etc | |
parent | d19f3707b55b40d851faef7c1aeb1b93df3fc182 (diff) | |
download | piny-code-a8cb1e015bd18ea85d95cf82f48e00c755fea9c3.tar.gz piny-code-a8cb1e015bd18ea85d95cf82f48e00c755fea9c3.zip |
pinyconfigs: apache2: move /srv/www to /srv/http and /srv/https
Diffstat (limited to 'pinyconfigs/etc')
-rw-r--r-- | pinyconfigs/etc/apache2/sites-available/piny | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pinyconfigs/etc/apache2/sites-available/piny b/pinyconfigs/etc/apache2/sites-available/piny index d6dc161..1637d39 100644 --- a/pinyconfigs/etc/apache2/sites-available/piny +++ b/pinyconfigs/etc/apache2/sites-available/piny @@ -1,7 +1,7 @@ <VirtualHost *:80> ServerName piny.be - DocumentRoot /srv/www/piny.be + DocumentRoot /srv/http/piny.be <Directory /> Options Indexes FollowSymLinks MultiViews @@ -22,7 +22,7 @@ <VirtualHost *:443> ServerName piny.be - DocumentRoot /srv/www/piny.be + DocumentRoot /srv/https/piny.be <Directory /> Options Indexes FollowSymLinks MultiViews @@ -47,7 +47,7 @@ <VirtualHost *:443> ServerName secure.piny.be - DocumentRoot /srv/www/secure.piny.be + DocumentRoot /srv/https/secure.piny.be RedirectMatch 301 ^/$ http://piny.be/ <Directory /> @@ -56,7 +56,7 @@ AllowOverride None </Directory> - <Directory "/srv/www/secure.piny.be/write"> + <Directory "/srv/https/secure.piny.be/write"> SetHandler cgi-script Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch </Directory> |