##// END OF EJS Templates
Fix upload files
Fix upload files

File last commit:

r10:ac38b2ff3424
r10:ac38b2ff3424
Show More
app.conf
26 lines | 547 B | text/plain | TextLexer
Fix docker commands
r1 # configuration
upstream djangomad {
server web:8000;
}
server {
Fix bugs and plots
r6 listen 8080;
Fix upload files
r10 client_max_body_size 100M;
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 upload files
r10 proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
Fix bugs and plots
r6 }