mirror of
https://github.com/aykhans/series-robot-web.git
synced 2025-04-21 14:19:27 +00:00
19 lines
376 B
Plaintext
19 lines
376 B
Plaintext
upstream django_server{
|
|
server django:8000;
|
|
}
|
|
|
|
server{
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
proxy_pass http://django_server;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $host;
|
|
proxy_redirect off;
|
|
}
|
|
|
|
location /django_static/ {
|
|
alias /django_static/;
|
|
}
|
|
} |