832f10bbf1
Update Apache config to point to v2 html. Change-Id: Id60fb65c0452d9369d937f0a33baa3943f123cfe
19 lines
440 B
Plaintext
19 lines
440 B
Plaintext
# Apache config for ods server
|
|
#
|
|
# Specify python path if you use virtualenv
|
|
|
|
WSGIDaemonProcess api threads=4 display-name=%{GROUP}
|
|
WSGIProcessGroup api
|
|
WSGIScriptAlias /api /var/www/compass/compass.wsgi
|
|
WSGISocketPrefix /var/run/wsgi
|
|
|
|
<VirtualHost *:80>
|
|
DocumentRoot /var/www/compass_web/v2
|
|
|
|
<Directory "/var/www/compass_web/v2">
|
|
Options Indexes FollowSymLinks
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|