Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / apps / arv-web / apache2_vhost
1 <VirtualHost *:80>
2
3   ServerName arv-web
4   ServerAdmin sysadmin@curoverse.com
5
6   # Index file and Document Root (where the public files are located)
7   DirectoryIndex index.html
8   DocumentRoot /mnt/public
9   RackBaseURI /
10
11   LogLevel warn
12   ErrorLog  ${APACHE_LOG_DIR}/error.log
13   CustomLog ${APACHE_LOG_DIR}/access.log combined
14
15   <Directory /mnt/public>
16     Options Indexes IncludesNoExec
17     Options -MultiViews
18     AllowOverride All
19     Order allow,deny
20     Allow from all
21   </Directory>
22
23 </VirtualHost>