##// 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
Fix docker commands
r1 # configuration
upstream djangomad {
server web:8000;
}
server {
Fix bugs and plots
r6 listen 8080;
Review updata app
r8 client_max_body_size 50M;
Fix docker commands
r1
Fix bugs and plots
r6 location /madrigal {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
Fix docker commands
r1 proxy_redirect off;
Fix bugs and plots
r6 proxy_set_header X-Script-Name /madrigal;
Fix docker commands
r1 proxy_pass http://djangomad;
}
Fix bugs and plots
r6 location /madrigal/static/ {
Fix docker commands
r1 alias /static/;
}
Fix bugs and plots
r6 }