blob: 192a76bd0747a86785d5adc1175d9d4fbd20ac82 (
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
35
36
37
38
39
40
41
42
43
44
45
|
# Example configuration file for the satellite-daemon
# hostname of the masterserver
MASTERSERVER_HOST=111.111.4.12
# the image folder where all up- and downloads are saved
IMAGE_FOLDER=./images
# the keystore that is used for the filetransfer
TRUSTSTORE_PATH=./config/trust.jks
# type of the keystore???
KEYSTORE_TYPE=jks
# the password of the keystore above
FILETRANSFER_KEYSTORE_PASSWORD=password
# the alias of the keystore for the secure thrift connection
THRIFT_KEYSTORE_ALIAS=alias
# it's password
THRIFT_KEYSTORE_PASSWORD=password
# and it's path
THRIFT_KEYSTORE_PATH=./config/satellite.jks
# use TLS? defaults to yes if missing
THRIFT_TLS=yes
# port where the thrift connection is opened (usually this is 9090/plain 9091/tls)
THRIFT_PORT=9091
# proxy configuration:
# 3 options for proxy configuration: AUTO = autmatically, YES, NO. If nothing is
# set, the default automatically will be choosen.
PROXY_CONF=AUTO
# If PROXY_CONF = YES some more information for connection are necessary:
# PROXY_ADDR = destination addres
PROXY_ADDR=1.2.3.4
# PROXY_PORT = port for proxy connection
PROXY_PORT=1080
# Username and password are optional, if empty, it is assumed that not necessary:
PROXY_USERNAME=test
PROXY_PASSWORD=password
|