Add gunicorn, supervisor and nginx configs

pull/2/head
Noah 2015-06-17 03:34:17 +00:00
parent 482b47b6aa
commit 0b85aaf091
3 changed files with 33 additions and 0 deletions

21
etc/nginx.conf Normal file
View File

@ -0,0 +1,21 @@
# Example config for a site on nginx using supervisor/gunicorn
server {
server_name www.example.com example.com;
listen 80;
root /home/www-data/git/rophako;
location /static {
alias /home/www-data/www/static;
}
location /favicon.ico {
alias /home/www-data/www/favicon.ico;
}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://127.0.0.1:9000;
}
}

6
etc/rophako.conf Normal file
View File

@ -0,0 +1,6 @@
# Example conf for supervisor
[program:rophako]
command = /home/www-data/.virtualenv/rophako/bin/gunicorn -b 127.0.0.1:9000 wsgi_gunicorn:app
environment = ROPHAKO_SETTINGS="/home/www-data/site/settings.ini"
directory = /home/www-data/git/rophako
user = www-data

6
wsgi_gunicorn.py Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python
from rophako.app import app
if __name__ == "__main__":
app.run(host='127.0.0.1')