immich: fix container name to match instructions

This commit is contained in:
aptalca 2024-03-28 15:43:41 -04:00 committed by GitHub
parent 945d60c344
commit ea1e36f874
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
## Version 2023/11/26
## Version 2024/03/28
# make sure that your immich container is named immich
# make sure that your dns has a cname set for immich
# immich v1.88+ only
@ -38,7 +38,7 @@ server {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app immich-server;
set $upstream_app immich;
set $upstream_port 3001;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
@ -48,7 +48,7 @@ server {
location ~ (/immich)?/api {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app immich-server;
set $upstream_app immich;
set $upstream_port 3001;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;