generated from digitalcredentials/isomorphic-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.coordinator.env
49 lines (39 loc) · 1.5 KB
/
.coordinator.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
# default port is 4005
# PORT=4005
# ONLY for development when we need https; default is false
# ENABLE_HTTPS_FOR_DEV=false
# default is false
# ENABLE_ACCESS_LOGGING=true
# default is false
# ENABLE_STATUS_SERVICE=true
# set the service endpoints
# defaults are as follows
# STATUS_SERVICE_ENDPOINT=STATUS:4008
# SIGNING_SERVICE_ENDPOINT=SIGNER:4006
# Tokens for protecting tenant endpoints.
# Add a token for any tenant name,
# Prefix the tenant name with 'TENANT_TOKEN_'
# e.g., TENANT_TOKEN_ECON101=p9u9uflkjd98j@%@
# For unprotected tenants, you must say so by
# specifying 'UNPROTECTED' as the value
# e.g, TENANT_TOKEN_MATH101=UNPROTECTED
TENANT_TOKEN_UN_PROTECTED_TEST=UNPROTECTED
TENANT_TOKEN_PROTECTED_TEST=jds
TENANT_TOKEN_RANDOM_TESTING=UNPROTECTED
# The tenant name is specified in the issuing/status invocations like so
# (for tenant name econ101):
# http://myhost.org/instance/econ101/credentials/issue
# http://myhost.org/instance/econ101/credentials/status
# set the service endpoints
# default to the default docker compose service names
# STATUS_SERVICE_ENDPOINT=STATUS:4008
# SIGNING_SERVICE_ENDPOINT=SIGNER:4006
# TRANSACTION_SERVICE_ENDPOINT=SIGNER:4004
# COORDINATOR_SERVICE_ENDPOINT=SIGNER:4005
# use localhost for service endpoints
# when developing locally
STATUS_SERVICE_ENDPOINT=localhost:4008
SIGNING_SERVICE_ENDPOINT=localhost:4006
TRANSACTION_SERVICE_ENDPOINT=localhost:4004
COORDINATOR_SERVICE_ENDPOINT=localhost:4005
PUBLIC_EXCHANGE_HOST=http://localhost:4005