-
Notifications
You must be signed in to change notification settings - Fork 1
/
stabled.conf
50 lines (34 loc) · 1.05 KB
/
stabled.conf
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
[App]
# accoutn state is persisted in json format here
AccountPersistDir = /home/user/.stabled/accounts/
[Listen]
# Default listening bind setting. 127.0.0.1 for localhost connections, 0.0.0.0
# for allowing connections from other hosts
BindHost = 127.0.0.1
# default port to listen
BindPort = 11056
# host for client to connect
ExternalHost = 127.0.0.1
# port for client to connect
ExternalPort = 11056
# Use TLS for websocket connections
UseTLS = False
# if UseTLS is True, use this cert file
CertFile = ./cert.pem
# if UseTLS is True, use this key file
CertKey = ./cert.key
# if UseTLS is True and we have a self-made cert for testing use this key file
# we don't need to provide a cert chain
SelfSignedCert = True
# If we have a 'real' cert, we typically need to provide the cert chain file to
# make the browser clients happy.
CertChainFile = None
[Rpc]
# host for client to connect
BindHost = 127.0.0.1
# port for client to connect
BindPort = 11055
# host for client to connect
ExternalHost = 127.0.0.1
# port for client to connect
ExternalPort = 11055