From ea1e36f874ea3243b119550d1b368c090fb867f0 Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Thu, 28 Mar 2024 15:43:41 -0400 Subject: [PATCH] immich: fix container name to match instructions --- immich.subdomain.conf.sample | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/immich.subdomain.conf.sample b/immich.subdomain.conf.sample index bda5f62..a5cb740 100644 --- a/immich.subdomain.conf.sample +++ b/immich.subdomain.conf.sample @@ -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;