Easy HTTPS for your private networks
getlocalcert.net
Easy HTTPS for your private networks
1–10 of 126 posts
Re: Easy HTTPS for your private networks
#2Re: Easy HTTPS for your private networks
#3on connect, a user is presented with an option to preselect a wifi network and input their geographic location. I managed to stuff a zip code lookup table into the code, but lat/long is really cumbersome to input, and using the phone's location sensor requires an HTTPS server
Re: Easy HTTPS for your private networks
#4 $ export NAMESILO_API_KEY=...
$ export NAMESILO_POLLING_INTERVAL=10
$ export NAMESILO_PROPAGATION_TIMEOUT=1800
$ export NAMESILO_TTL=3600
$ lego --email --dns namesilo --domains *..com runRe: Easy HTTPS for your private networks
#5Re: Easy HTTPS for your private networks
#6I recommend just using something like XCA [1]. Just configure your own root CA and distribute it. [1] https://hohnstaedt.de/xca/
Re: Easy HTTPS for your private networks
#7Re: Easy HTTPS for your private networks
#8Most of the time, you really shouldn't need this, and your local HTTPS development should just require:
mkcert -install
mkcert localhost
In the directory of your app, etc.If you're deploying private applications, these records should exist in your intranet DNS resolver instead.
Re: Easy HTTPS for your private networks
#9I recommend just using something like XCA [1]. Just configure your own root CA and distribute it. [1] https://hohnstaedt.de/xca/
For services I host on my Tailscale/Headscale network, I just use DNS challenges. With Cloudflare and Caddy, it's as straightforward as adding:
tls { dns cloudflare {env.CLOUDFLARE_AUTH_TOKEN} }
to the site's configuration in the Caddyfile
Re: Easy HTTPS for your private networks
#10I recommend just using something like XCA [1]. Just configure your own root CA and distribute it. [1] https://hohnstaedt.de/xca/