-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.default
41 lines (28 loc) · 1.04 KB
/
.env.default
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
# environmental variable defaults
# These are the default values for environmental variables. To override these values,
# create a separate .env file. The .gitignore rules will not commit the .env file to your
# repository, but be careful.
# Note: any variables already set in the process environment will
# not be overridden by these values.
DOCKER_IMAGE=approov2/shapes-node-koa
# HTTP port or shared port if behind reverse proxy which terminates HTTPS
HTTP_PORT=8002
# Redirect HTTP traffic to HTTPS
ENFORCE_HTTPS=false
# HTTPS_MODE
# direct HTTPS terminated at server
# x-forwarded-proto HTTPS terminated upstream, HTTPS port, key, cert not used
HTTPS_MODE=direct
# HTTPS port if used
HTTPS_PORT=8003
# HTTPS private key, base64 encoded, if used
HTTPS_KEY=
# HTTPS public cert, base64 encoded, if used
HTTPS_CRT=
# enable logging of API calls
ENABLE_LOGGING=false
# Approov signing secret, base64 encoded
APPROOV_SECRET=QVBQUk9PVl9TRUNSRVQ=
# refuse API calls if true and authorization fails
ENFORCE_APPROOV=true
# end of file