summarylogtreecommitdiffstats
path: root/immich.conf
diff options
context:
space:
mode:
Diffstat (limited to 'immich.conf')
-rw-r--r--immich.conf35
1 files changed, 11 insertions, 24 deletions
diff --git a/immich.conf b/immich.conf
index a1a9726067b8..96964ffa2dc9 100644
--- a/immich.conf
+++ b/immich.conf
@@ -2,7 +2,7 @@
# Database
###################################################################################
-DB_HOSTNAME=immich_postgres
+DB_HOSTNAME=/run/postgresql/.s.PGSQL.5432
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE_NAME=immich
@@ -20,7 +20,7 @@ REDIS_HOSTNAME=immich_redis
# REDIS_PORT=6379
# REDIS_DBINDEX=0
# REDIS_PASSWORD=
-# REDIS_SOCKET=
+REDIS_SOCKET=/run/redis/redis.sock
###################################################################################
# Upload File Location
@@ -30,21 +30,12 @@ REDIS_HOSTNAME=immich_redis
UPLOAD_LOCATION=/var/lib/immich/upload
-###################################################################################
-# Log message level - [simple|verbose]
-###################################################################################
-
-LOG_LEVEL=simple
###################################################################################
-# JWT SECRET
-#
-# This JWT_SECRET is used to sign the authentication keys for user login
-# You should set it to a long randomly generated value
-# You can use this command to generate one: openssl rand -base64 128
+# Typesense
###################################################################################
-
-JWT_SECRET=
+TYPESENSE_API_KEY=
+TYPESENSE_ENABLED=false
###################################################################################
# Reverse Geocoding
@@ -84,16 +75,12 @@ PUBLIC_LOGIN_PAGE_MESSAGE=
# IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003
####################################################################################
-# OAuth Setting - Optional
+# Alternative API's External Address - Optional
#
-# These setting will enable OAuth login for your instance of Immich
-# Folow the instructions in the page https://immich.app/docs/usage/oauth to set up your OAuth provider
+# This is an advanced feature used to control the public server endpoint returned to clients during Well-known discovery.
+# You should only use this if you want mobile apps to access the immich API over a custom URL. Do not include trailing slash.
+# NOTE: At this time, the web app will not be affected by this setting and will continue to use the relative path: /api
+# Examples: http://localhost:3001, http://immich-api.example.com, etc
####################################################################################
-# OAUTH_ENABLED=false
-# OAUTH_ISSUER_URL=
-# OAUTH_CLIENT_ID=
-# OAUTH_CLIENT_SECRET=
-# OAUTH_BUTTON_TEXT=Login with OAuth
-# OAUTH_AUTO_REGISTER=true
-# OAUTH_SCOPE="openid profile email"
+#IMMICH_API_URL_EXTERNAL=http://localhost:3001