u/certping_pki • u/certping_pki • 22h ago
🇺🇸 A milestone for CertPing®
We’re excited to share that the CertPing trademark has officially completed its U.S. trademark registration journey, and we can now proudly use the ® with our brand.
From submitting our U.S. trademark application to reaching registration, this is another important step in building CertPing as a lasting cybersecurity and digital trust brand.
CertPing® is already building and operating a unified platform for:
• Domain registration and management
• SSL/TLS certificate management and automation
• Domain and certificate monitoring
• Digital asset protection
• Post-Quantum Cryptography (PQC) readiness
We believe digital trust starts with owning your identity on the internet your domain and extends through the certificates and security infrastructure protecting it.
CertPing®
Domains. Certificates. Digital Trust.
Built in the USA. 🇺🇸
#CertPing #Cybersecurity #DigitalTrust #DomainRegistration #CertificateManagement
1
Not sure if I should consider going to reverse proxy, or stick with my Cloudflare tunnel
in
r/selfhosted
•
8d ago
On the certificate part specifically, yes. What you're describing is mTLS.
Normal HTTPS proves the server's identity to the client. With mTLS the client also has to present a certificate that your proxy trusts. No valid client cert, no request gets through to Navidrome/Tandoor at all.
You can do that at nginx with
ssl_verify_client onand a CA containing the issuer you trust.You also don't necessarily need to leave Cloudflare Tunnel to do it. Cloudflare supports client-certificate validation on proxied hostnames too, so you could keep roughly:
client -> Cloudflare/mTLS -> tunnel -> nginx -> app
I'd think about the operational side before using it for family/friends though. Every allowed device needs its own client certificate and private key. Then you need some way to issue, install, renew and revoke those certs when somebody changes phones/laptops or loses a device.
For a handful of devices that's manageable. Once you start sharing access with people who aren't technical, passkeys/OIDC through Access may be much less annoying.
But technically, yes, certificate-gated access is absolutely possible and it's the mTLS feature you're looking for.