-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
70 lines (62 loc) · 2.37 KB
/
config.ini
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
[SERVER]
# IP Address of the computer running ffbo.processor
# If ip is not specified, it is assumed that
# all components will run on localhost.
# Uncomment the following line to specify the IP.
# ip = 127.0.0.1
# DO NOT CHANGE: The "Realm" which components operate under
realm = realm1
[NLP]
# DO NOT CHANGE: Path to NeuroNLP files, is served by Crossbar
path = /ffbo.neuronlp
# Port which NeuroNLP is served from on the Docker container
port = 8081
# Port which NeuroNLP is served from on the host computer
expose-port = 8081
[GFX]
# DO NOT CHANGE: Path to NeuroGFX files, is served by Crossbar
path = /ffbo.neurogfx
# Port which NeuroGFX is served from on the Docker container
port = 8082
# Port which NeuroGFX is served from on the host computer
expose-port = 8082
[SANDBOX]
# DO NOT CHANGE: Whether to run "sandbox" service
sandbox = False
# DO NOT CHANGE: Path to "sandbox" service files, is served by Crossbar
path = /ffbo.processor/components/web/sandbox
# DO NOT CHANGE: Port which "sandbox" service is served from on the Docker container
port = 8083
# DO NOT CHANGE: Port which "sandbox service is served from on the Docker container
expose-port = 8083
[CROSSBAR]
# DO NOT CHANGE: JSON Configuration for Crossbar
configfile = docker_config.json
# DO NOT CHANGE: Path to Crossbar directory in Docker container
path = /ffbo.processor/components/.crossbar/
[USER]
# "user" argument used for authentication between components
user = component
# NOTE: Should configure "secret" and "salt" for your setup
# "secret" argument used for authentication between components
secret = tcJopPZmi4Vo
# "salt" argument used for authentication between components
salt = testsalt
[AUTH]
# DO NOT CHANGE: Whether or not to use ssl for component communication
ssl = False
# DO NOT CHANGE: Whether to use authentication between components
authentication = True
# ADVANCED FUNCTIONALITY: Certificate used for SSL between components
cert =
# ADVANCED FUNCTIONALITY: Key used for SSL between components
key =
# ADVANCED FUNCTIONALITY: Chain Certificate used for SSL between components
chain-cert =
# ADVANCED FUNCTIONALITY: Certificate used for initial authentication between components
ca_cert_file = isrgrootx1.pem
# ADVANCED FUNCTIONALITY: Intermediate Certificate used for authentication between components
intermediate_cert_file = letsencryptauthorityx3.pem
[DEBUG]
# Whether to use debug mode when running components
debug = False