8442: Code cleanup. Remove dead code. Update comments.
[arvados.git] / docker / arv-web / apache2_vhost
1 <VirtualHost *:80>
2   # Index file and Document Root (where the public files are located)
3   DirectoryIndex index.html
4   DocumentRoot /mnt/public
5   RackBaseURI /
6
7   LogLevel warn
8   ErrorLog  ${APACHE_LOG_DIR}/error.log
9   CustomLog ${APACHE_LOG_DIR}/access.log combined
10
11   <Directory /mnt/public>
12     Options Indexes IncludesNoExec
13     Options -MultiViews
14     AllowOverride All
15     Order allow,deny
16     Allow from all
17   </Directory>
18
19 </VirtualHost>