Add guest agent caching and update doc hints (refs #560)

This commit is contained in:
rcourtman 2025-10-16 08:15:49 +00:00
parent 605512aa6b
commit 3a4fc044ea
15 changed files with 211 additions and 59 deletions

View file

@ -8,12 +8,14 @@ Pulse provides a REST API for monitoring and managing Proxmox VE and PBS instanc
Pulse supports multiple authentication methods that can be used independently or together:
> **Service name note:** Systemd deployments use `pulse.service`. If your host still uses the legacy `pulse-backend.service`, substitute that name in the commands below.
### Password Authentication
Set a username and password for web UI access. Passwords are hashed with bcrypt (cost 12) for security.
```bash
# Systemd
sudo systemctl edit pulse-backend
sudo systemctl edit pulse
# Add:
[Service]
Environment="PULSE_AUTH_USER=admin"
@ -32,7 +34,7 @@ For programmatic API access and automation. Manage tokens via **Settings → Sec
```bash
# Systemd
sudo systemctl edit pulse-backend
sudo systemctl edit pulse
# Add:
[Service]
Environment="API_TOKENS=token-a,token-b"