5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-05 09:17:59 +03:00

docs: exand PBS to Proxmox Backup (Server)

where applicable.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2023-03-28 14:12:25 +02:00 committed by Thomas Lamprecht
parent dd71b70b5d
commit db10278b95
6 changed files with 17 additions and 16 deletions

View File

@ -31,7 +31,7 @@ Login
.. image:: images/screenshots/pbs-gui-login-window.png
:target: _images/pbs-gui-login-window.png
:align: right
:alt: PBS login window
:alt: Proxmox Backup Server login window
When you connect to the web interface, you will first see the login window.
Proxmox Backup Server supports various languages and authentication back ends
@ -47,7 +47,7 @@ GUI Overview
.. image:: images/screenshots/pbs-gui-dashboard.png
:target: _images/pbs-gui-dashboard.png
:align: right
:alt: PBS GUI Dashboard
:alt: Proxmox Backup Server GUI Dashboard
The Proxmox Backup Server web interface consists of 3 main sections:

View File

@ -178,7 +178,7 @@ Mailing Lists
Proxmox Backup Server is fully open-source and contributions are welcome! Here
is the primary communication channel for developers:
:Mailing list for developers: `PBS Development List`_
:Mailing list for developers: `Proxmox Backup Sever Development List`_
Bug Tracker
~~~~~~~~~~~

View File

@ -110,7 +110,7 @@ We recommend to configure this repository in ``/etc/apt/sources.list``.
deb http://ftp.debian.org/debian bullseye main contrib
deb http://ftp.debian.org/debian bullseye-updates main contrib
# PBS pbs-no-subscription repository provided by proxmox.com,
# Proxmox Backup Server pbs-no-subscription repository provided by proxmox.com,
# NOT recommended for production use
deb http://download.proxmox.com/debian/pbs bullseye pbs-no-subscription

View File

@ -1,3 +1,4 @@
Command line tool for restoring files and directories from PBS archives. In contrast to
proxmox-backup-client, this supports both container/host and VM backups.
Command line tool for restoring files and directories from Proxmox Backup
archives. In contrast to proxmox-backup-client, this supports both
container/host and VM backups.

View File

@ -3,7 +3,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>PBS Prune Simulator</title>
<title>Proxmox Backup Server Prune Simulator</title>
<link rel="stylesheet" type="text/css" href="extjs/theme-crisp/resources/theme-crisp-all.css">
<style>

View File

@ -595,21 +595,21 @@ in the following LDIF dataset, the user ``user1`` has the unique domain
In in similar manner, Proxmox Backup Server uses user identifiers (``userid``)
to uniquely identify users. Thus, it is necessary to establish a mapping
between PBS's ``userid`` and LDAP's ``dn``. This mapping is established by
the ``user-attr`` configuration parameter - it contains the name of the LDAP
attribute containing a valid PBS user identifier.
between a Proxmox Backup Server ``userid`` and an LDAP ``dn``. This mapping is
established by the ``user-attr`` configuration parameter - it contains the name
of the LDAP attribute containing a valid Proxmox Backup Server user identifier.
For the example above, setting ``user-attr`` to ``uid`` will have the effect
that the user ``user1@<realm-name>`` will be mapped to the LDAP entity
``uid=user1,ou=People,dc=ldap-test,dc=com``. On user login, PBS will perform
a `subtree search` under the configured Base Domain (``base-dn``) to query
the user's ``dn``. Once the ``dn`` is known, an LDAP bind operation is performed
to authenticate the user against the LDAP server.
``uid=user1,ou=People,dc=ldap-test,dc=com``. On user login, Proxmox Backup
Server will perform a `subtree search` under the configured Base Domain
(``base-dn``) to query the user's ``dn``. Once the ``dn`` is known, an LDAP
bind operation is performed to authenticate the user against the LDAP server.
As not all LDAP servers allow `anonymous` search operations, it is possible to
configure a bind domain (``bind-dn``) and a bind password (``password``).
If set, PBS will bind to the LDAP server using these credentials before
performing any search operations.
If set, Proxmox Backup Server will bind to the LDAP server using these
credentials before performing any search operations.
A full list of all configuration parameters can be found at :ref:`domains.cfg`.