18 lines
357 B
Plaintext
18 lines
357 B
Plaintext
server {
|
|
|
|
listen 8080;
|
|
server_name example.org;
|
|
charset utf-8;
|
|
|
|
location /static {
|
|
alias /usr/src/app/static;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|