add comments to sample config

This commit is contained in:
Roni Väyrynen
2021-09-12 11:16:43 +03:00
parent ca139df4c9
commit f8c97f4afa

View File

@@ -1,5 +1,6 @@
# Optional user that runs the service. root by default
#XOUSER="node"
# Optional user that runs the service
# default: root
#XOUSER=
# Port number where xen-orchestra service is bound
PORT="80"
@@ -8,6 +9,7 @@ PORT="80"
INSTALLDIR="/opt/xo"
# Script will update itself if there's a newer version available. This assumes that script inside a git directory and remote is ronivay/XenOrchestraInstallerUpdater
# options: true/false
SELFUPGRADE=true
# Xen Orchestra configuration file is stored in XOUSER's home directory ($HOME/.config/xo-server/config.toml) and by default will be overwritten with every update done by this script.
@@ -22,13 +24,15 @@ REPOSITORY="https://github.com/vatesfr/xen-orchestra"
# Also, you can set this to "release" to use the latest tagged branch.
BRANCH="master"
# Installation log path. Default path is logs directory inside this script root
#LOGPATH="/tmp/example/logs"
# Installation log path
# default: ./logs
#LOGPATH=
# Only one PLUGINS variable can be used at a time. Comment out the other one if you change these below. Comment out both if you don't want any plugins to be installed.
# Comma separated list of plugins to be installed, check README for more information. Note that 3rd party plugins defined below should be listed here as well with their name eq. repo1,repo2 etc.
#PLUGINS="xo-server-transport-email,xo-server-usage-report,xo-server-perf-alert"
# (default) all plugins will be installed, including possible 3rd-party plugins if defined.
PLUGINS="all"
@@ -54,5 +58,7 @@ PRESERVE="3"
# Location of pem certificate/key files. Installation will automatically configure HTTPS if these are defined. Remember to change PORT variable as well.
#PATH_TO_HTTPS_CERT=$INSTALLDIR/xo.crt
#PATH_TO_HTTPS_KEY=$INSTALLDIR/xo.key
# If set to true together with above paths, defined pem key/certificate will be created if neither exists.
#AUTOCERT="true"
# If set to true together with cert/key paths, defined pem key/certificate will be created if neither exists.
# options: true/false
#AUTOCERT="false"