mirror of
https://github.com/andrew-d/proxmox-service-discovery.git
synced 2026-04-26 12:55:51 +03:00
[GH-ISSUE #4] Unable to start the demon #1
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxmox-service-discovery#1
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 @pippo73 on GitHub (Apr 10, 2025).
Original GitHub issue: https://github.com/andrew-d/proxmox-service-discovery/issues/4
Originally assigned to: @andrew-d on GitHub.
Hi,
I'm trying to start this service but I get an error:
I'm exposing the nameserver trought a cloudflare tunnel on a 443, but it seem that it searches on the 443 port also on the interlan il instead of 8006.
Is there a way to fix it?
tnx
@andrew-d commented on GitHub (Apr 10, 2025):
I should probably clarify the documentation, but you need to use the full URL + port in the
--proxmox-hostflag; for example,--proxmox-host=https://myFQDN:8006. Let me know if that works for you?@pippo73 commented on GitHub (Apr 11, 2025):
No, I think I was not clear. My situation is this way:
internet => FQDN:443 => cloudflare tunner => myinernalserver:8006
so what should I put in --proxmox-host part?
If I set the FQDN the port 443 is not correct on the internal address because the port is 8006
if I set the port 8006 it is closed to the big internet
and I cannot set the internal addes with the right port beacuse in this case the DNS is not correct
Hope now I'm more clear
@andrew-d commented on GitHub (Apr 11, 2025):
Aha, I see the issue. I use a publicly-trusted TLS certificate for my proxmox host, but
tls: failed to verify certificate: x509: certificate signed by unknown authorityindicates that you're either using a self-signed certificate, or a certificate where the name on the certificate doesn't match the address that you connect to. I've just added the--tls-no-verifyflag in #6 which will turn off certificate verification, and I've filed #7 to track additional improvements here. Can you test with that new flag?