blob: 57122346cc3f30783e257fde821de281ae896942 (
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_ips.postgres }}
DB_PORT=5432
DB_USERNAME=immich
DB_PASSWORD={{ pg_user_passwords.immich }}
DB_DATABASE_NAME=immich
# Redis
REDIS_HOSTNAME={{ jail_ips.redis }}
REDIS_PORT=6379
REDIS_PASSWORD={{ valkey_password }}
# Machine learning
MACHINE_LEARNING_URL=http://127.0.0.1:3003
|