forked from camicroscope/Caracal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
46 lines (32 loc) · 895 Bytes
/
.env.example
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
#
# REQUIRED fields
#
# jwks url for id provider
JWK_URL=http://localhost:3000
#
# Optional Fields
#
# number of child processes
WORKERS = 4
# the port to use
PORT = 4010
# jwt audience to accept, (if unset, does not check)
AUD = false
# jwt issuer to accept, (if unset, does not check)
ISS = true
# expire in time for jwks
EXPIRY = 1d
# set truthy to disable permission and login handlers
DISABLE_SEC = false
# set truthy to allow public users | false |
ALLOW_PUBLIC = false
# IIP server location
IIP_PATH = http://ca-iip
# Database (mongo) connection uri
MONGO_URI = mongodb://localhost
# mongo db to use
MONGO_DB = camic
# automatic generate key in server in not found
GENERATE_KEY_IF_MISSING = false
# time at which to enable security, see parsable times at https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse
ENABLE_SECURITY_AT = false