forked from b3scale/b3scale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env.b3scaled
49 lines (40 loc) · 1.2 KB
/
example.env.b3scaled
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Config environment variables for B3Scale
#
# Connect string passed to the database connection.
# You can use either the DSN format or an URL format.
# Default: postgres://postgres:postgres@localhost:5432/b3scale
#
#B3SCALE_DB_URL=postgres://postgres:postgres@localhost:5432/b3scale
# HTTP Server BIND IP:Port
# Default: 127.0.0.1:42352
#
#B3SCALE_LISTEN_HTTP=127.0.0.1:42352
# Application stdout loglevel
# Default: info
#
#B3SCALE_LOG_LEVEL=info
# Log format. Choose between `plain` or `structured` logging.
# Default: plain
#
B3SCALE_LOG_FORMAT=plain
# The number of maximum parallel connections we will allocate.
# Please note that one connection per request will be blocked
# and returned to the pool afterwards.
# Default: 128
#
#B3SCALE_DB_POOL_SIZE=128
# Shared secret for JWTs. Set to non-empty value to enable API.
# Default: ""
B3SCALE_API_JWT_SECRET=
# Local paths to directories of published and unpublished recordings
# b3scale neeeds write-access to both, so it can move recordings
# between both.
# Default: ""
#
#B3SCALE_RECORDINGS_PUBLISHED_PATH=
#B3SCALE_RECORDINGS_UNPUBLISHED_PATH=
# Path to playback host URL.
# Example: https://playback.example.com
# Default: ""
#B3SCALE_RECORDINGS_PLAYBACK_HOST=