Bareos WebUI Vue

The Vue-based Bareos WebUI is a new single-page application located in webui-vue/. It provides a modern WebUI implementation that coexists with the classic PHP-based Bareos Webui.

Warning

The Vue-based WebUI is currently a technical preview. It is intended for evaluation, early adoption, and iterative development. The classic PHP-based WebUI remains available in parallel and should still be considered the default WebUI for production environments unless the Vue WebUI preview has been explicitly evaluated for the intended use case.

Coexistence with the classic WebUI

The current Bareos documentation distinguishes between two WebUI variants:

  • Bareos Webui documents the classic PHP-based WebUI.

  • This page documents the new Vue-based WebUI technical preview.

The two interfaces are designed to exist in parallel. In a typical Apache deployment they use separate URLs:

  • classic WebUI: /bareos-webui

  • Vue WebUI preview: /bareos-webui-new

The Vue WebUI uses the same Bareos Director console concepts as the classic WebUI, so user access still depends on properly configured Console (Dir) resources and matching ACLs.

Architecture overview

The Vue WebUI consists of:

  • the static SPA bundle installed below /usr/share/bareos-webui-new

  • an Apache configuration that exposes the bundle below /bareos-webui-new

  • the bareos-webui-proxy service, which accepts both HTTP session requests and WebSocket connections and forwards them to the Bareos Director

The default Apache configuration proxies both /ws and /api/ to bareos-webui-proxy on port 9104. The HTTP endpoints are used for session login, restore, and logout, while the WebSocket endpoint is used for the interactive director connection.

By default, bareos-webui-proxy starts without an explicit config file. If /etc/bareos-webui-proxy/bareos-webui-proxy.ini exists, it is loaded. Otherwise built-in defaults are used. The package ships a default template bareos-webui-proxy.ini in the Bareos config template directory (for example /usr/lib/bareos/defaultconfigs/), so administrators can copy and adapt it into /etc/bareos-webui-proxy/ when needed. When --config is used explicitly, the given file must exist.

Installation and access

The Vue WebUI is installed separately from the classic PHP WebUI via the bareos-webui-new package and keeps its own Apache configuration file bareos-webui-new.conf.

After installation, open the preview at:

http://HOSTNAME/bareos-webui-new

To use it successfully, ensure that:

  • the Vue WebUI bundle is installed

  • the Apache configuration for /bareos-webui-new is enabled

  • bareos-webui-proxy is installed and running

  • the HTTP and WebSocket proxy targets on port 9104 are reachable from Apache

  • suitable Bareos Director console credentials exist

Configuring multiple directors

By default, bareos-webui-proxy connects to a single local Director. To make multiple Directors selectable in the WebUI, copy the shipped config template into place and add one section per Director:

cp /usr/lib/bareos/defaultconfigs/bareos-webui-proxy.ini \
   /etc/bareos-webui-proxy/bareos-webui-proxy.ini

Then edit /etc/bareos-webui-proxy/bareos-webui-proxy.ini:

[listen]
address = localhost
port = 9104

[bareos-dir]
address = localhost

[site-b]
address = dr.example.com
director_name = bareos-dir

Each section name (e.g. bareos-dir, site-b) is shown as a selectable Director in the WebUI login and scope menu. Set director_name only when the real Bareos Director name differs from the section name — this is the name the Director announces in its greeting banner.

After changing the config, restart the proxy:

systemctl restart bareos-webui-proxy

Once logged in to multiple Directors, the scope menu at the top of the page allows switching between them or viewing data from all Directors at once.

[listen] section options

Option

Default

Description

address

localhost

Address the proxy binds to.

port

9104

Port the proxy listens on.

log_level

info

Minimum log level: debug, info, warn, error. The --log-level CLI flag takes precedence if specified.

session_idle_timeout_minutes

30

Minutes of inactivity before a session is invalidated.

session_absolute_lifetime_hours

8

Maximum session lifetime in hours regardless of activity.

max_unauthenticated_connections

100

Maximum concurrent connections that have not yet completed login.

[<director>] section options

Option

Default

Description

address

localhost

Hostname or IP address of the Bareos Director.

port

9101

Port the Bareos Director listens on.

director_name

(section name)

Real Director name as announced in the greeting banner. Set this when the section name differs from the Director name.

tls_psk_disable

no

Set to yes to disable TLS-PSK for this Director connection.

What is already available

The technical preview already covers important day-to-day workflows, including:

  • login with Bareos console credentials

  • dashboard views

  • job overview and job details

  • restore workflows, including plugin restore options

  • client, fileset, schedule, storage, and volume views

  • Director status and message views

  • a console popup for command execution

  • multi-director capable views where supported by the page

Known differences and current limitations

Compared to the classic PHP WebUI, the Vue WebUI preview should currently be viewed as a parallel implementation under active development.

Important differences are:

  • documentation and operational guidance are still catching up

  • some workflows are intentionally presented differently than in the classic WebUI instead of being a 1:1 port

  • the preview depends on bareos-webui-proxy, which is a separate runtime component

  • the classic WebUI should remain available while the preview is being evaluated

When to use which WebUI

Use the classic PHP WebUI when:

  • you want the long-established, primary WebUI

  • your operations depend on currently documented production procedures

  • you prefer the most conservative choice

Use the Vue WebUI preview when:

  • you want to evaluate the new interface

  • you want to test current preview workflows in parallel with the classic UI

  • you are helping validate the future WebUI direction

For now, the recommended approach is to keep both interfaces available and let users compare them against their operational needs.

Providing feedback

Because the Vue WebUI is a technical preview under active development, user feedback is especially valuable at this stage.

Please open an issue on GitHub Issues for any of the following:

  • Misbehaviour — anything that does not work as expected or produces errors

  • Missing functionality — features present in the classic PHP WebUI that are absent or incomplete in the Vue WebUI

  • New feature requests — ideas for functionality you would like to see in the new WebUI that go beyond what the classic WebUI offers

When reporting, please include the Bareos version, browser, and a short description of the steps to reproduce the issue.

Further information

For developer-oriented details, see WebUI Vue.