4904: Chooses most recently modified collection and runs web service on it.
[arvados.git] / 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
9
10   LogLevel warn
11   ErrorLog  ${APACHE_LOG_DIR}/error.log
12   CustomLog ${APACHE_LOG_DIR}/access.log combined
13
14   <Directory /mnt>
15     Options Indexes FollowSymLinks MultiViews IncludesNoExec
16     AllowOverride None
17     Order allow,deny
18     allow from all
19   </Directory>
20
21 </VirtualHost>