4904: Moved to services/, finished first draft documentation.
[arvados.git] / docker / arv-web / apache2_vhost
diff --git a/docker/arv-web/apache2_vhost b/docker/arv-web/apache2_vhost
new file mode 100644 (file)
index 0000000..dad4a9b
--- /dev/null
@@ -0,0 +1,23 @@
+<VirtualHost *:80>
+
+  ServerName arv-web
+  ServerAdmin sysadmin@curoverse.com
+
+  # Index file and Document Root (where the public files are located)
+  DirectoryIndex index.html
+  DocumentRoot /mnt/public
+  RackBaseURI /
+
+  LogLevel warn
+  ErrorLog  ${APACHE_LOG_DIR}/error.log
+  CustomLog ${APACHE_LOG_DIR}/access.log combined
+
+  <Directory /mnt/public>
+    Options Indexes IncludesNoExec
+    Options -MultiViews
+    AllowOverride All
+    Order allow,deny
+    Allow from all
+  </Directory>
+
+</VirtualHost>