Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update immich.subdomain.conf.sample #713

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions immich.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand Down