blob: 87c563d860d8dcd9863cf72e6840726fbbd23422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Immich server configuration
IMMICH_MEDIA_LOCATION=/data
TZ=Europe/Helsinki
IMMICH_PORT=80
NODE_ENV=production
# Database
DB_HOSTNAME={{ jail_lan_cidr | ipv4_nth(2 + jail_lan_offset | int) }}
DB_PORT=5432
DB_USERNAME=immich
DB_PASSWORD={{ pg_user_passwords.immich }}
DB_DATABASE_NAME=immich
# Redis
REDIS_HOSTNAME={{ jail_lan_cidr | ipv4_nth(9 + jail_lan_offset | int) }}
REDIS_PORT=6379
REDIS_PASSWORD={{ valkey_password }}
# Machine learning
MACHINE_LEARNING_URL=http://127.0.0.1:3003
|