Advertisement
tmsteinhardt

Immich .env File

Feb 28th, 2025
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. # You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
  2.  
  3. # The location where your uploaded files are stored
  4. UPLOAD_LOCATION=./library
  5. # The location where your database files are stored
  6. DB_DATA_LOCATION=./postgres
  7. # Mounted NFS drives
  8. EXTERNAL_PATH_PHOTOS=/mnt/photos
  9.  
  10. # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/>
  11. TZ=US/Central
  12.  
  13. # The Immich version to use. You can pin this to a specific version like "v1.71.0"
  14. IMMICH_VERSION=release
  15.  
  16. # Connection secret for postgres. You should change it to a random password
  17. # Please use only the characters `A-Za-z0-9`, without special characters or spaces
  18. DB_PASSWORD=postgres
  19.  
  20. # The values below this line do not need to be changed
  21. ###################################################################################
  22. DB_USERNAME=postgres
  23. DB_DATABASE_NAME=immich
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement