Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Bergkemper <frank.bergkemper@bareos.com>2017-08-29 16:44:46 +0300
committerJoerg Steffens <joerg.steffens@bareos.com>2017-08-31 13:24:38 +0300
commit2e087622e2defef72c6848daa469354b1ed3461d (patch)
tree55faa90624a690e55eaad66e1d7eddfc1972848b
parentc94ec42de7414cd7adbf5f4bcbed3f854f49920f (diff)
webui configuration files updated
-rw-r--r--manuals/en/main/webui.tex114
1 files changed, 87 insertions, 27 deletions
diff --git a/manuals/en/main/webui.tex b/manuals/en/main/webui.tex
index bb773bb..f4430e1 100644
--- a/manuals/en/main/webui.tex
+++ b/manuals/en/main/webui.tex
@@ -240,35 +240,70 @@ The configuration file \file{/etc/bareos-webui/directors.ini} should look simila
\begin{bconfig}{/etc/bareos-webui/directors.ini}
;
-; Bareos WebUI Configuration
+; Bareos WebUI Configuration File
+;
; File: /etc/bareos-webui/directors.ini
;
-;
-; Section bareos-dir
-;
-[bareos-dir]
+;------------------------------------------------------------------------------
+; Section localhost-dir
+;------------------------------------------------------------------------------
+[localhost-dir]
-; Enable or disable director. Possible values are "yes" or "no", the default is "yes".
+; Enable or disable section. Possible values are "yes" or "no", the default is "yes".
enabled = "yes"
-; Fill in the IP-Address or FQDN of your director.
+; Fill in the IP-Address or FQDN of you director.
diraddress = "localhost"
; Default value is 9101
-dirport = 9101
+dirport = 9101
-; Set catalog to explicit value if you have multiple catalogs,
-; the default value is "MyCatalog".
+; Set catalog to explicit value if you have multiple catalogs
;catalog = "MyCatalog"
-;
-; Section remote-dir
-;
-[remote-dir]
+; TLS verify peer
+; Possible values: true or false
+tls_verify_peer = false
+
+; Server can do TLS
+; Possible values: true or false
+server_can_do_tls = false
+
+; Server requires TLS
+; Possible values: true or false
+server_requires_tls = false
+
+; Client can do TLS
+; Possible values: true or false
+client_can_do_tls = false
+
+; Client requires TLS
+; Possible value: true or false
+client_requires_tls = false
+
+; Path to the certificate authority file
+; E.g. ca_file = "/etc/bareos-webui/tls/BareosCA.crt"
+;ca_file = ""
+
+; Path to the cert file which needs to contain the client certificate and the key in PEM encoding
+; E.g. ca_file = "/etc/bareos-webui/tls/restricted-named-console.pem"
+;cert_file = ""
+
+; Passphrase needed to unlock the above cert file if set
+;cert_file_passphrase = ""
+
+; Allowed common names
+; E.g. allowed_cns = "host1.example.com"
+;allowed_cns = ""
+
+;------------------------------------------------------------------------------
+; Section another-host-dir
+;------------------------------------------------------------------------------
+[another-host-dir]
enabled = "no"
-diraddress = "hostname"
-;dirport = 9101
+diraddress = "192.168.120.1"
+dirport = 9101
;catalog = "MyCatalog"
;tls_verify_peer = false
;server_can_do_tls = false
@@ -279,6 +314,7 @@ diraddress = "hostname"
;cert_file = ""
;cert_file_passphrase = ""
;allowed_cns = ""
+
\end{bconfig}
You can add as many directors as you want, also the same host with a different name and different catalog, if you have multiple catalogs.
@@ -289,29 +325,53 @@ Since \sinceVersion{}{/etc/bareos-webui/configuration.ini}{16.2.2}
you are able to configure some parameters of the \bareosWebui to your needs.
\begin{bconfig}{/etc/bareos-webui/configuration.ini}
+;
+; Bareos WebUI Configuration File
+;
+; File: /etc/bareos-webui/configuration.ini
+;
+
+;------------------------------------------------------------------------------
+; SESSION SETTINGS
+;------------------------------------------------------------------------------
+;
[session]
-# Default: 3600 seconds
+; Default: 3600 seconds
timeout=3600
+;------------------------------------------------------------------------------
+; DASHBOARD SETTINGS
+;------------------------------------------------------------------------------
+[dashboard]
+; Autorefresh Interval
+; Default: 60000 milliseconds
+autorefresh_interval=60000
+
+;------------------------------------------------------------------------------
+; TABLE SETTINGS
+;------------------------------------------------------------------------------
[tables]
-# Define a list of pagination values.
-# Default: 10,25,50,100
+; Possible values for pagination
+; Default: 10,25,50,100
pagination_values=10,25,50,100
-# Default number of rows per page
-# for possible values see pagination_values
-# Default: 25
+; Default number of rows per page
+; for possible values see pagination_values
+; Default: 25
pagination_default_value=25
-# State saving - restore table state on page reload.
-# Default: false
+; State saving - restore table state on page reload.
+; Default: false
save_previous_state=false
+;------------------------------------------------------------------------------
+; VARIOUS SETTINGS
+;------------------------------------------------------------------------------
[autochanger]
-# Pooltype for label to use as filter.
-# See pooltype in output of bconsole: list pools
-# Default: none
+; Pooltype for label to use as filter.
+; Default: none
labelpooltype=scratch
+
\end{bconfig}
\section{Upgrade from 15.2 to 16.2}