-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env
More file actions
9 lines (9 loc) · 806 Bytes
/
.env
File metadata and controls
9 lines (9 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
# If provided, the on-disk database (BadgerDB) will use AES encryption. If used, must be set at first startup.
# The type of AES is used based on the key size. For example 16 bytes will use AES-128. 24 bytes will use AES-192. 32 bytes will use AES-256.
DISK_DB_ENCRYPTION_KEY=badgerkey16bytes
# Used by the front end to gently authenticate requests. This entire application should be within your VPC and should NOT be externally accessible.
# Leaving this empty will allow unauthenticated requests to the API server.
# NOTE: The frontend does not support injecting the ENV variables with docker, do not use this for now...
#HTTP_API_SERVER_AUTH_TOKEN=db-webhooks
# CSV of origin(s) a cross-domain request can be executed from the internal API server. * will allow all.
HTTP_API_SERVER_CORS_ALLOW_ORIGINS=*