immich + NGINX proxy manager
Hello,
I have been trying to get this to work for the past few hours but no luck.
Environment:
immich on docker host with IP:192.168.2.20
NPM on docker host with IP: 192.168.2.30
I keep getting screenshot#4 where the server appears offline on immich web.
@jrasm91 I have seen your multiple posts where you have been using NPM successfully. What obvious mistake I am making here, if you can help please whenever you get a chance.
I have been trying to get this to work for the past few hours but no luck.
Environment:
immich on docker host with IP:192.168.2.20
NPM on docker host with IP: 192.168.2.30
- NPM settings:
- NPM advance settings section
3.location /api
{
# Compression
gzip_static on;
gzip_min_length 1000;
gzip_comp_level 2;
proxy_buffering off;
proxy_buffer_size 16k;
proxy_busy_buffers_size 24k;
proxy_buffers 64 4k;
proxy_force_ranges on;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
rewrite /api/(.*) /$1 break;
proxy_pass http://192.168.2.20:3001;
}
I keep getting screenshot#4 where the server appears offline on immich web.
@jrasm91 I have seen your multiple posts where you have been using NPM successfully. What obvious mistake I am making here, if you can help please whenever you get a chance.



