Add gunicorn, supervisor and nginx configs
This commit is contained in:
parent
482b47b6aa
commit
0b85aaf091
21
etc/nginx.conf
Normal file
21
etc/nginx.conf
Normal 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
6
etc/rophako.conf
Normal 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
6
wsgi_gunicorn.py
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from rophako.app import app
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host='127.0.0.1')
|
Loading…
Reference in New Issue
Block a user