12 lines
609 B
Plaintext
12 lines
609 B
Plaintext
<VirtualHost *:80>
|
|
WSGIDaemonProcess rockviewer-production user=rockviewer group=rockviewer threads=10 python-path=/home/shane/virtualenvs/rockviewer/lib/python2.7/site-packages
|
|
WSGIProcessGroup rockviewer-production
|
|
WSGIScriptAlias / /home/shane/rockviewer/releases/current/rockviewer/rockviewer.wsgi
|
|
<Directory /home/shane/rockviewer/releases/current/rockviewer>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
ErrorLog /var/log/apache2/error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/access.log combined
|
|
</VirtualHost> |