agd
agd
IImmich
Created by satish on 3/29/2023 in #help-desk-support
Nginx Default Recommended Config has an issue
@satish it sounds like you're looking at the internal proxy as a reference for what to do with an upstream reverse-proxy... which I don't think is a good idea.
15 replies
IImmich
Created by satish on 3/29/2023 in #help-desk-support
Nginx Default Recommended Config has an issue
I have a very simple proxy block in front of the immich container proxy:
client_max_body_size 0;

location / {
include directives/proxy.conf;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_http_version 1.1;
proxy_max_temp_file_size 96384m;
proxy_pass http://127.0.0.1:3300;
}
client_max_body_size 0;

location / {
include directives/proxy.conf;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_http_version 1.1;
proxy_max_temp_file_size 96384m;
proxy_pass http://127.0.0.1:3300;
}
15 replies