cb_parser/Docker/config/mydjango.conf

17 lines
215 B
Plaintext
Raw Normal View History

2018-09-12 22:29:12 +03:00
upstream web {
ip_hash;
server web:8000;
}
# portal
server {
location / {
proxy_pass http://web/;
}
location /static {
alias /src/static;
}
listen 8000;
server_name localhost;
}