mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-04-19 13:33:34 -04:00
21 lines
488 B
Plaintext
21 lines
488 B
Plaintext
events {}
|
|
|
|
http {
|
|
server {
|
|
listen 7446;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
proxy_pass http://host.docker.internal:7019;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
# Small enough to reproduce oversized upstream response header failures
|
|
# on heavier SSR pages, while being closer to a realistic nginx default.
|
|
proxy_buffer_size 4k;
|
|
}
|
|
}
|
|
}
|