prefixing a root path too many times doesn't work
[objavi2.git] / apache-config-example-publish-domain
blob79151181c2d20eeb85fa3e745b92acdaf4006547
1 <VirtualHost *:80>
2         ServerAdmin webmaster@localhost
3         ServerName fm-test.halo.gen.nz
5         DocumentRoot /home/douglas/objavi2/htdocs/shared/flossmanuals
6         <Directory />
7                 Options FollowSymLinks
8                 AllowOverride None
9         </Directory>
10         <Directory /home/douglas/objavi2/htdocs/shared/flossmanuals/>
11                 Options +All
12                 AllowOverride None
13                 Order allow,deny
14                 Allow from all
15         </Directory>
16         
17         Alias /static /home/douglas/objavi2/htdocs/static
19         CustomLog /var/log/apache2/access.log combined
20 </VirtualHost>