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
|
# X2Go Session Broker configuration for SystemV-like init systems
# Uncomment to enable the X2Go Session Broker standalone daemon
START_BROKER=true
# Bind standalone daemon to this address:port
#DAEMON_BIND_ADDRESS=127.0.0.1:8080
# Control debug mode (0=disable, 1=enable).
#
# Apart from verbose logging in /var/log/x2gobroker/*.log, this will
# also make the broker available through http GET method requests
# (otherwise: POST method requests only) and you will be able to
# test the broker through your web browser.
#
# This option can also be configured in /etc/default/python-x2go.
# The value configured here overrides the value from python-x2go
# defaults and only sets the x2gobroker-daemon into debug mode.
#X2GOBROKER_DEBUG=0
##########################################################
### ###
### Enable SSL Support ###
### o You have to create your own SSL certificates ###
### o You have to actively uncomment the below SSL ###
### relevant line to enable https:// in x2gobroker ###
### ###
##########################################################
# SSL certificate file
#X2GOBROKER_SSL_CERTFILE=/etc/x2go/broker/ssl/broker.crt
# SSL key file (ensure permissions are set to root:x2gobroker:0640)
#X2GOBROKER_SSL_KEYFILE=/etc/x2go/broker/ssl/broker.key
|