mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 14:35:56 +03:00
[GH-ISSUE #52] [Bug]: Unable to add self-signed certificate PBS #63
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#63
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @erwanclx on GitHub (Feb 25, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/52
Bug Description
Trying to add a PBS with self-signed certificate, successfull add in UI without error but no data in Proxmox Backup Server section
Steps to Reproduce
Go to "Connections" tab, Add PBS, then fill the form with Ignore TLS certificate errors ticked.
Next, go to Backups tabs > PBS, select the PBS Server and see you have no info at all.
Finally, when multiple fetch fail, we can see error in docker logs
Expected Behavior
Fetch data from PBS
Actual Behavior
Fetch Error
ProxCenter Version
latest
Proxmox VE Version
latest
Browser
Chrome
Logs / Screenshots
@adminsyspro commented on GitHub (Feb 26, 2026):
Hi @erwanclx, thanks for the report!
We investigated the code in depth, and the TLS handling for PBS connections uses the exact same mechanism as PVE connections — both use an
undiciAgent withrejectUnauthorized: falsewhen "Ignore TLS certificate errors" is enabled.Since the connection was successfully added (which means the validation call to PBS passed with TLS bypass), the
insecureTLSflag was correctly set at creation time.To help us investigate further, could you:
Show us a screenshot of your PBS connection settings in the Settings page (the edit dialog), so we can confirm "Ignore TLS certificate errors" is toggled ON
Check the database value by running this:
(Replace
<proxcenter-container>with your actual container name — usedocker psto find it)We want to confirm
insecureTLS=1in your database.If
insecureTLSis0, you can fix it by running:Then restart the container.
Thanks!
@adminsyspro commented on GitHub (Mar 3, 2026):
Hi @erwanclx, just following up — we haven't heard back from you on this.
Feel free to reopen it with the requested info (screenshot of PBS connection settings +
insecureTLSdatabase value) and we'll be happy to investigate further.Thanks!