Skip to content

Instantly share code, notes, and snippets.

@heronyang
Created April 24, 2015 06:15
Show Gist options
  • Select an option

  • Save heronyang/fd762cd0a1939f6ea20c to your computer and use it in GitHub Desktop.

Select an option

Save heronyang/fd762cd0a1939f6ea20c to your computer and use it in GitHub Desktop.
WSGIPythonPath /home/username/bugkiller/webapp
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName bugkiller.heron.me
ServerAlias bugkiller.heron.me
WSGIScriptAlias / /home/username/bugkiller/webapp/webapp/wsgi.py
<Directory /home/username/bugkiller/webapp>
<Files wsgi.py>
Order deny,allow
Require all granted
</Files>
</Directory>
Alias /static/ /home/username/bugkiller/webapp/bugkiller/static/
<Directory /home/username/bugkiller/webapp/bugkiller/static/>
Require all granted
</Directory>
LogLevel debug
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment