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