-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env
129 lines (91 loc) · 2.37 KB
/
example.env
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
##
# Required if connecting to any oracle DBs
##
# Misleading name, this is a comma separated list of LDAP servers in the format
# some.url:port,other.url:port
LDAP_SERVER=
# Oracle LDAP query DN params, typically containing an `ou` value and one or
# more `dc` values.
ORACLE_BASE_DN=
##
# Required if user auth is enabled
##
# URL to the OAuth server that will be used to authenticate user bearer tokens.
OAUTH_URL=
# OAuth client ID for the service, used by the service to authenticate itself to
# the OAuth server.
OAUTH_CLIENT_ID=
# OAuth client secret key for the service, used by the service to authenticate
# itself to the OAuth server.
OAUTH_CLIENT_SECRET=
# Optional keystore file to use for certificates for the OAuth server.
KEY_STORE_FILE=
# Optional keystore file passphrase to use for certificates for the OAuth
# server.
KEY_STORE_PASS_PHRASE=
##
# Required if admin auth is enabled
##
# Some auth token/password. This value should be fairly long
# (min 64 characters)
ADMIN_AUTH_TOKEN=
##
# Required if connecting to an app database.
##
# Username
APP_DB_USER=
# Password
APP_DB_PASS=
# Optional connection pool size
APP_DB_POOL_SIZE=
# Optional platform (default is oracle)
APP_DB_PLATFORM=oracle
# TNS Name (LDAP configuration)
APP_DB_TNS_NAME=
# MANUAL CONFIGURATION, may be used instead of TNS name.
#APP_DB_HOST=
#APP_DB_PORT=
#APP_DB_NAME=
##
# Required if connecting to an account database.
##
# Username
ACCT_DB_USER=
# Password
ACCT_DB_PASS=
# Optional connection pool size
ACCT_DB_POOL_SIZE=
# Optional platform (default is oracle)
ACCT_DB_PLATFORM=oracle
# TNS Name (LDAP configuration)
ACCT_DB_TNS_NAME=
# MANUAL CONFIGURATION, may be used instead of TNS name.
#ACCT_DB_HOST=
#ACCT_DB_PORT=
#ACCT_DB_NAME=
##
# Required if connecting to a user database.
##
# Username
USER_DB_USER=
# Password
USER_DB_PASS=
# Optional connection pool size
USER_DB_POOL_SIZE=5
# Optional platform
USER_DB_PLATFORM=oracle
# Optional schema to use for user db tables
USER_DB_SCHEMA=userlogins5
# TNS Name (LDAP configuration)
USER_DB_TNS_NAME=
# MANUAL CONFIGURATION, may be used instead of TNS name.
#USER_DB_HOST=
#USER_DB_PORT=
#USER_DB_NAME=
##
# Optional environment variables (may assist in development)
##
# Port to bind to on host (which may be a container)
SERVER_PORT=8080
# Whether CORS support should be enabled (helpful for debugging client stuff)
ENABLE_CORS=true