mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
20 lines
348 B
Text
20 lines
348 B
Text
|
|
server {
|
||
|
|
|
||
|
|
listen 8082;
|
||
|
|
server_name localhost;
|
||
|
|
charset utf-8;
|
||
|
|
|
||
|
|
location /media {
|
||
|
|
alias /data/media;
|
||
|
|
}
|
||
|
|
|
||
|
|
location / {
|
||
|
|
proxy_pass http://app: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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|