28 lines
579 B
Plaintext
28 lines
579 B
Plaintext
# Do not use quotes, make will scream at you
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=postgres://user:password@localhost/termcloud
|
|
|
|
# Server Configuration
|
|
PORT=8080
|
|
STORAGE_DIR=storage
|
|
MAX_FILE_SIZE_MB=100
|
|
RATE_LIMIT=20.0
|
|
CORS_ORIGINS=*
|
|
GZIP_LEVEL=5
|
|
|
|
# Database Pool Configuration
|
|
DB_MAX_CONNECTIONS=100
|
|
DB_MIN_CONNECTIONS=10
|
|
DB_CONN_LIFETIME=1h
|
|
DB_CONN_IDLE_TIME=1m
|
|
DB_HEALTH_CHECK_PERIOD=5s
|
|
|
|
# User Defaults and Billing
|
|
DEFAULT_STORAGE_LIMIT_GB=1
|
|
PRICE_PER_GB_USD=0.50
|
|
|
|
# Bitcoin Payment Configuration
|
|
BITCOIN_MASTER_ADDRESS=bc1qyour_bitcoin_address_here
|
|
BITCOIN_NETWORK=mainnet
|