16 lines
440 B
Bash
16 lines
440 B
Bash
|
|
DATABASE_URL=postgresql://user:pass@127.0.0.1:5432/db
|
||
|
|
|
||
|
|
ROCKET_ADDRESS=0.0.0.0
|
||
|
|
ROCKET_PORT=8000
|
||
|
|
|
||
|
|
BOSS_CDN_URL=https://boss.example.com
|
||
|
|
|
||
|
|
AES_KEY=KEY
|
||
|
|
HMAC_KEY=KEY
|
||
|
|
|
||
|
|
# Can be paired with an admin auth server for extra security,
|
||
|
|
# if disabled auth will instead check to see if the sent token
|
||
|
|
# matches ADMIN_AUTH_TOKEN
|
||
|
|
USE_ADMIN_AUTH=true
|
||
|
|
ADMIN_AUTH_URL=http://admin.example.com # Only needed when USE_ADMIN_AUTH=true
|
||
|
|
ADMIN_AUTH_TOKEN=AUTH_TOKEN
|