Initial refactor
This commit is contained in:
parent
12b4aa0b91
commit
89f23fe668
11 changed files with 230 additions and 65 deletions
18
config/nginx/conf.d/local.conf
Normal file
18
config/nginx/conf.d/local.conf
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
upstream gunicorn {
|
||||
server django:8000;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
access_log /var/log/nginx/access_log;
|
||||
error_log /var/log/nginx/error_log;
|
||||
|
||||
location / {
|
||||
proxy_pass http://gunicorn;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $host;
|
||||
proxy_redirect off;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue