Solution: How to get local SSL and use your public domain for local internal subdomains?
from ComradeMiao@lemmy.dbzer0.com to selfhosted@lemmy.world on 20 Dec 19:38
https://lemmy.dbzer0.com/post/33785346

#selfhosted

threaded - newest

ArbiterXero@lemmy.world on 20 Dec 20:06 next collapse

Or you can do the dns challenge for letsencrypt

ComradeMiao@lemmy.dbzer0.com on 20 Dec 20:30 collapse

I am using letsencrypt on NPM. You mean only locally?

theit8514@lemmy.world on 20 Dec 22:14 collapse

The DNS-01 challenge can be used to generate a wildcard by creating the requested dns record in your public dns zone, then you can use that cert for internal servers/dns. With certain dns providers it can even be automated.

eff-certbot.readthedocs.io/en/stable/using.html#t…

solrize@lemmy.world on 20 Dec 20:23 next collapse

Proxy host out on the public internet? Usually I just use a local private CA for this, and install the CA root in my browser.

ComradeMiao@lemmy.dbzer0.com on 20 Dec 20:31 collapse

Cloudflare is only providing the letsencrypt cert.

Could you explain/link your method? :)

solrize@lemmy.world on 20 Dec 20:36 collapse

I don’t bother with a proxy host or with LetsEncrypt, though I guess you could use LetsEncrypt perfectly well. Back when I was doing this, LetsEncrypt didn’t exist and you had to actually pay for public certificates, so using locally generated free ones saved money. It also had a minor(?) security advantage in that if the private server key somehow leaked, it wouldn’t let people impersonate our internet domain.

For the private CA I simply used the crappy CA.pl script that comes with OpenSSL or did at the time. There are much better ways to do it, especially at any kind of scale, but CA.pl sufficed dealing with a few development machines.

2xsaiko@discuss.tchncs.de on 20 Dec 20:55 next collapse

This seems super overcomplicated. What I would do is put all the subdomains on the public DNS, let HTTP(S) through the firewall for the respective hosts, deny everything from outside of your local network on the http server that isn’t under the HTTP challenge path and then run the HTTP challenge as you would for a public site.

Then you can get certs, everyone outside trying to access will get 403, and inside the network you can access as normal.

Of course you’ll have to trust your http server’s ACL for that, but I’m just going to assume servers like nginx (which I use) have a reliable implementation.

Tinkerer@lemmy.ca on 20 Dec 22:38 next collapse

I’m running cloudflare and NPM, I did a DNS challenge to get my wildcard cert, then put in access lists so for my internal hosts only private IP address subnet can access them. I have my OPNsense firewall also redirect any of those internal hosts request back to my NPM host. I have everything internal with a valid https cert.

ComradeMiao@lemmy.dbzer0.com on 20 Dec 23:26 collapse

Sounds like the same thing except for access list. I was unsuccessful those working oreviously

Tinkerer@lemmy.ca on 21 Dec 00:11 collapse

Ah yeah I’m trying to move to podman for NPM and the access lists don’t work for some reason. On docker though it works very well

emax_gomax@lemmy.world on 21 Dec 00:08 collapse

I would recommend just using caddy. It removes the complicated part of ssl management. For a local network it’ll setup a local self signed certificate authority and you can just install those certificates to any devices on your LAN that you want to have access. For a public setup it’ll use letsencrypt. You will still need to setup dns if you want wildcard routing.

vividspecter@lemm.ee on 21 Dec 09:09 collapse

If you want to use DNS challenge with Caddy it’s kind of annoying though (need to download/compile a separate version with the DNS plugin you need).

Which is probably a good idea if you don’t plan to expose the services publicly but want a real certificate to avoid self-signed cert warnings.

emax_gomax@lemmy.world on 21 Dec 10:32 collapse

I’ve never had this issue but I run basically everything through docker and presumably it bundles this by default.