21 lines
358 B
Plaintext
21 lines
358 B
Plaintext
server {
|
|
|
|
listen 80;
|
|
|
|
client_max_body_size 10m;
|
|
|
|
charset utf-8;
|
|
|
|
location /media {
|
|
alias /home/docsbox/media;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://web:8000;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
}
|