updated env examples

This commit is contained in:
subnub
2025-02-25 09:06:56 -05:00
parent e29d8ba678
commit 16a65fa6c5
3 changed files with 160 additions and 29 deletions
+8 -5
View File
@@ -1,3 +1,6 @@
# Either remove the .example from the end of this filename.
# Or create a new file with the same name, but without the .example extension.
# MongoDB URL: Connection string for your MongoDB database
# example: mongodb://localhost:27017/mydrive
MONGODB_URL=
@@ -21,16 +24,16 @@ S3_BUCKET=
# Encryiption Key (optional): The encryption key used to encrypt the files.
# DO NOT LOSE OR FORGET THIS KEY AS ALL DATA WILL BE LOST IF YOU LOSE IT.
# If you do not supply a key, the app will instead prompt you to type one into the terminal when you start the app.
# If you do not supply a key, the app will instead prompt you to type one into the terminal when you start the server.
KEY=
# Ports (optional): The ports to run the app on.
# Ports (optional): The ports to run the server on.
# HTTP_PORT: Default port is 3000
# HTTPS_PORT: Default port is 8080
HTTP_PORT=
HTTPS_PORT=
# URL (optional): The URL to run the app on.
# URL (optional): The URL to run the server on.
# Most likely not needed, but useful if you are running docker or such
# And need to bind to 0.0.0.0 instead.
URL=
@@ -50,7 +53,7 @@ REMOTE_URL=
# Access tokens, refresh, and cookie
# These should be randomly generated in a secure manner.
# If you lose these tokens, all users will be logged out.
# You can also change these if you want to force all users to login again.
# You can also change these if you want to force all users to be logged out.
# Each token should be a different string.
# Example: sa4hQqJwGFLC1LJk59
PASSWORD_ACCESS=
@@ -62,7 +65,7 @@ PASSWORD_COOKIE=
# VIDEO_THUMBNAILS_ENABLED=true
VIDEO_THUMBNAILS_ENABLED=
# Video thumbnails continued:
# Video thumbnails continued (optional):
# Sometimes generating a video thumbnail will fail with the default method.
# If so you can choose to instead temporarily store the video in a directory, and generate a thumbnail from that.
# WARNING: The file will be temporarily stored in this directory UNENCRYPTED.