##// 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
# configuration
upstream djangomad {
server web:8000;
}
server {
listen 8080;
client_max_body_size 100M;
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/;
}
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
}