##// END OF EJS Templates
Fix docker commands
Fix docker commands

File last commit:

r1:c98dcec9786f
r1:c98dcec9786f
Show More
app.conf
20 lines | 358 B | text/plain | TextLexer
# configuration
upstream djangomad {
server web:8000;
}
server {
listen 80;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_redirect off;
proxy_pass http://djangomad;
}
location /static/ {
alias /static/;
}
}