From 993f073138cfbd9ce2be29957f1e837e6b376cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nagy=20L=C3=A1szl=C3=B3=20Zolt=C3=A1n?= <884277+NLZ@users.noreply.github.com> Date: Sat, 2 Nov 2024 20:05:59 +0100 Subject: [PATCH 1/2] Update immich.subdomain.conf.sample Use the default immich-server container name as per the official compose --- 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 2d9e2d42..8c2cda31 100644 --- a/immich.subdomain.conf.sample +++ b/immich.subdomain.conf.sample @@ -1,7 +1,7 @@ ## Version 2024/10/15 # make sure that your immich container is named immich # make sure that your dns has a cname set for immich -# immich v1.118+ only. For earlier versions, change $upstream_port to 3001 +# immich v1.118+ only. For earlier versions, change $upstream_port to 3001 server { listen 443 ssl; @@ -38,7 +38,7 @@ server { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; - set $upstream_app immich; + set $upstream_app immich-server; set $upstream_port 2283; 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; + set $upstream_app immich-server; set $upstream_port 2283; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; From 238f08a4bbaf408a4bc62b1cb784feab478f2278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nagy=20L=C3=A1szl=C3=B3=20Zolt=C3=A1n?= <884277+NLZ@users.noreply.github.com> Date: Sat, 2 Nov 2024 20:58:58 +0100 Subject: [PATCH 2/2] Update immich.subdomain.conf.sample Update comments --- 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 8c2cda31..7d3daa3d 100644 --- a/immich.subdomain.conf.sample +++ b/immich.subdomain.conf.sample @@ -1,7 +1,7 @@ ## Version 2024/10/15 -# make sure that your immich container is named immich -# make sure that your dns has a cname set for immich -# immich v1.118+ only. For earlier versions, change $upstream_port to 3001 +# make sure that your immich container is named immich-server +# make sure that your dns has a cname set for immich-server +# immich v1.118+ only with the official docker-compose.yml. For earlier versions, change $upstream_port to 3001 server { listen 443 ssl;