blob: 933e42661383046ddad2fdb4a44dbf66753ca1e0 (
plain) (
blame)
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
|
# Example configuration file for the satellite-daemon
# hostname of the masterserver
MASTERSERVER_HOST=132.230.4.17
# type of the keystore???
KEYSTORE_TYPE=jks
# the keystore that is used for the filetransfer
FILETRANSFER_KEYSTORE_PATH=/path/to/keystore.jks
# the password of the keystore above
FILETRANSFER_KEYSTORE_PASSWORD=changeit
# the name of the organization
ORGANIZATION_NAME=uni-freiburg.de
# the alias of the keystore for the secure thrift connection
THRIFT_KEYSTORE_ALIAS=alias
# it's password
THRIFT_KEYSTORE_PASSWORD=changeit
# and it's path
THRIFT_KEYSTORE_PATH=/path/to/keystore.jks
# port where the file transfer takes place (get it from the masterserver)
FILETRANSFER_PORT=1234
# port where the thrift connection is opened (usually this is 9191)
THRIFT_PORT=9191
# the image folder where all up- and downloads are saved
IMAGE_FOLDER=/path/to/images
|