##// END OF EJS Templates
Fixing plots
Fixing plots

File last commit:

r6:7771bbd8f772
r7:4e0b343b0c61
Show More
app.conf
21 lines | 407 B | text/plain | TextLexer
# configuration
upstream djangomad {
server web:8000;
}
server {
listen 8080;
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/;
}
}