Hi all,
I have an installation of PBS behind an apache reverse proxy, and I can access to the webui without problems. The console doesn't works but it wasn't a big problem.
Now i want to use proxmox-backup-client to backup a remote VPS to my PBS, but backup fails with:
Starting backup: host/debian/2020-12-10T09:18:28Z
Client name: debian
Starting backup protocol: Thu Dec 10 10:18:28 2020
Error: missing Upgrade header
googling around seems to be an issue related to ws/wss handshake.
For PVE, i use those apache directives to access the console:
but i cannot find anywhere similar directives for PBS.
The console is not so important, but the remote backup is very important.
Thanks a lot and best regards
I have an installation of PBS behind an apache reverse proxy, and I can access to the webui without problems. The console doesn't works but it wasn't a big problem.
Now i want to use proxmox-backup-client to backup a remote VPS to my PBS, but backup fails with:
Starting backup: host/debian/2020-12-10T09:18:28Z
Client name: debian
Starting backup protocol: Thu Dec 10 10:18:28 2020
Error: missing Upgrade header
googling around seems to be an issue related to ws/wss handshake.
For PVE, i use those apache directives to access the console:
Code:
<LocationMatch ^/(api2/json/nodes/[^\/]+/[^\/]+/[^\/]+/vncwebsocket.*)$>
ProxyPass wss://xxx.xxx.xxx.xxx:8006/$1 retry=0
</LocationMatch>
<Location /websockify>
ProxyPass ws://xxx.xxx.xxx.xxx:8006
ProxyPassReverse ws://xxx.xxx.xxx.xxx:8006
</Location>
<LocationMatch ^/(api2/json/nodes/[^\/]+/vncwebsocket.*)$>
ProxyPass wss://xxx.xxx.xxx.xxx/$1 retry=0
</LocationMatch>
but i cannot find anywhere similar directives for PBS.
The console is not so important, but the remote backup is very important.
Thanks a lot and best regards