-
Notifications
You must be signed in to change notification settings - Fork 5
/
sample.env
42 lines (32 loc) · 1.22 KB
/
sample.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
VERIDA_NETWORK=banksia
# Admin username and password (for system operations)
# MUST be set to something random
DB_USER="admin"
DB_PASS="admin"
# Replication username and password (for replicating data to other nodes)
# MUST be set to something random
# MUST not change once the node is operational
DB_REPLICATION_USER=""
DB_REPLICATION_PASS=""
# Internal hostname (Used internally by the storage node for accessing CouchDb).
DB_PROTOCOL_INTERNAL="http"
DB_HOST_INTERNAL="localhost"
DB_PORT_INTERNAL=5984
# External hostname (returned to network users to access CouchDb)
DB_PROTOCOL_EXTERNAL="http"
DB_HOST_EXTERNAL="localhost"
DB_PORT_EXTERNAL=5984
# The public URI of this storage node server (Will match what is stored in DID Documents)
# Note: Must include the port and have NO trailing slash
ENDPOINT_URI="http://localhost:5000"
DB_REJECT_UNAUTHORIZED_SSL=true
ACCESS_JWT_SIGN_PK=insert-random-access-symmetric-key
REFRESH_JWT_SIGN_PK=insert-random-refresh-symmetric-key
# Verida Private Key as hex string (used to sign responses). Including leading 0x.
VDA_PRIVATE_KEY=
# Maximum number of users supported by this node
MAX_USERS=10000
# Alpha numeric only
DB_PUBLIC_USER=784c2n780c9cn0789
DB_PUBLIC_PASS=784c2n780c9cn0789
PORT=5151