Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
webui configuration files updated
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergkemper authored and joergsteffens committed Aug 31, 2017
1 parent c94ec42 commit 2e08762
Showing 1 changed file with 87 additions and 27 deletions.
114 changes: 87 additions & 27 deletions manuals/en/main/webui.tex
Expand Up @@ -240,35 +240,70 @@ \subsubsection{Configure your /etc/bareos-webui/directors.ini}

\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
Expand All @@ -279,6 +314,7 @@ \subsubsection{Configure your /etc/bareos-webui/directors.ini}
;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.
Expand All @@ -289,29 +325,53 @@ \subsubsection{Configure your /etc/bareos-webui/configuration.ini}
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}
Expand Down

0 comments on commit 2e08762

Please sign in to comment.