blob: 83d3bfc0bab83b629927d997836b3edfcb36f7cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
static-dir: "_env:STATIC_DIR:static"
host: "_env:HOST:*4" # any IPv4 host
port: "_env:PORT:3000"
ip-from-header: "_env:IP_FROM_HEADER:false"
# Optional values with the following production defaults.
# In development, they default to the inverse.
#
# detailed-logging: false
# should-log-all: false
# reload-templates: false
database:
user: "_env:PGUSER:bar"
password: "_env:PGPASS:"
host: "_env:PGHOST:"
port: "_env:PGPORT:5432"
database: "_env:PGDATABASE:bar"
poolsize: "_env:PGPOOLSIZE:10"
|