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
|
# NOTE: This file is not used if you are using systemd. The options are
# hardcoded in the greenbone-security-assistant.service file. If you want to change
# them you should override the service file by creating a file
# /etc/systemd/system/greenbone-security-assistant.service.d/local.conf like this:
# [Service]
# ExecStart=
# ExecStart=/usr/sbin/gsad --foreground <your desired options>
# The address the Greenbone Security Assistant will listen on.
GSA_ADDRESS=127.0.0.1
# The port the Greenbone Security Assistant will listen on.
GSA_PORT=9392
# The file to use as private key for HTTPS
#GSA_SSL_PRIVATE_KEY=
# The file to use as certificate for HTTPS
#GSA_SSL_CERTIFICATE=
# Should HTTP get redirected to HTTPS
# If $GSA_REDIRECT_PORT is not set it will redirect port 80.
#GSA_REDIRECT=1
# Redirect HTTP from this port to $GSA_PORT
# For this being effective $GSA_REDIRECT has to be set to 1.
#GSA_REDIRECT_PORT=9394
# The address the OpenVAS Manager is listening on.
MANAGER_ADDRESS=127.0.0.1
# The port the OpenVAS Manager is listening on.
MANAGER_PORT=9390
|