##// END OF EJS Templates
Update configs
Update configs

File last commit:

r8:9c1b6919a8a9
r9:2e29893b10f5
Show More
app.conf
22 lines | 437 B | text/plain | TextLexer
# configuration
upstream djangomad {
server web:8000;
}
server {
listen 8080;
client_max_body_size 50M;
location /madrigal {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect off;
proxy_set_header X-Script-Name /madrigal;
proxy_pass http://djangomad;
}
location /madrigal/static/ {
alias /static/;
}
}