-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
16 lines (11 loc) · 917 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PORT="8000" // optional - defaults to 8000
HOST="hostname or ip" // optional - defaults to localhost
PROTOCOL="http or https" // optional - defaults to http
DATA_FOLDER="/Path/to/Data/Folder" // required when using LocalStorage
API_KEY="secure_api_key" // required - for safe api key use openssl rand -base64 40
DISABLE_AUTHENTICATION="true_or_false" // optional - defaults to false
JWT_SECRET="secure_jwt_secret" // required - for safe jwt secret use openssl rand -base64 40
JWT_EXPIRES_IN="expiration_in_seconds" // optional - defaults to 900
SSH_ENABLED="true_or_false" // optional - boolean - defaults to false
SSH_PRIVATE_KEY_PATH="/Path/to/Key" // required if ssh is enabled - create with ssh-keygen
SSH_PORT="22" // optional if ssh is enabled - defaults to 22