mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
12 lines
253 B
Plaintext
12 lines
253 B
Plaintext
server {
|
|
location /api/ {
|
|
proxy_pass http://backend:5000;
|
|
proxy_redirect default;
|
|
|
|
proxy_read_timeout 241s;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|