summaryrefslogtreecommitdiffstats
path: root/compass-deck/misc/apache/ods-server.conf
diff options
context:
space:
mode:
Diffstat (limited to 'compass-deck/misc/apache/ods-server.conf')
-rw-r--r--compass-deck/misc/apache/ods-server.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/compass-deck/misc/apache/ods-server.conf b/compass-deck/misc/apache/ods-server.conf
new file mode 100644
index 0000000..a773777
--- /dev/null
+++ b/compass-deck/misc/apache/ods-server.conf
@@ -0,0 +1,18 @@
+# Apache config for ods server
+#
+# Specify python path if you use virtualenv
+
+WSGIDaemonProcess compass threads=4 display-name=%{GROUP}
+WSGIProcessGroup compass
+WSGIScriptAlias /api /var/www/compass/compass.wsgi
+WSGISocketPrefix /var/run/wsgi
+
+<VirtualHost *:80>
+ DocumentRoot /var/www/compass_web/v2.5
+
+ <Directory "/var/www/compass_web/v2.5">
+ Options Indexes FollowSymLinks
+ Order allow,deny
+ Allow from all
+ </Directory>
+</VirtualHost>