Gomo
Gomo
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
Alright, will have it added then. Thank you all for looking into my issue, even tho it turned out to be something simple. I appreciate it! ❤️
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
All working well after I ran "docker image prune" & re-started the instance. One quick additional question, is this needed in Nginx Proxy Manager?
proxy_set_header Host $http_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 Host $http_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;
I am asking as I think it works fine without it?
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
Ty
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
I'll deal with the space topic and post an update
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
No description
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
Ahhh.. darn it ..
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
But now upon exporting logs, I think the issue is not related to the proxy
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
Instance cannot be reached via local IP no matter if this entry is present or not.
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
docker logs immich_server
37 replies
IImmich
Created by Gomo on 12/23/2024 in #help-desk-support
[SOLVED] 502 Bad Gateway with latest Immich version
This is my docker-compose.yml
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:2283
depends_on:
- redis
- database
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
volumes:
- model-cache:/cache
env_file:
- .env
restart: always

redis:
container_name: immich_redis
image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de>
restart: always

database:
container_name: immich_postgres
image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9d>
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
volumes:
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
restart: always
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "lo>

volumes:
model-cache:
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:2283
depends_on:
- redis
- database
restart: always

immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
volumes:
- model-cache:/cache
env_file:
- .env
restart: always

redis:
container_name: immich_redis
image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de>
restart: always

database:
container_name: immich_postgres
image: registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9d>
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
volumes:
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
restart: always
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "lo>

volumes:
model-cache:
37 replies