1

So, I probably screwed up when I set up HSTS and didn't refresh my certificate in time. Browsers now have a cache of my old certificate and don't seem to be contacting my server to request a fresh cert. Is there some server trick to force clients to refresh an out of date certificate on an HSTS enabled server?

Using lighttpd and letsencrypt.

1 Answers1

0

It turns out that lighttpd needs to have the private key and certificate concatenated. After running the refresh for letsencrypt I just had to regenerate the ssl.pem by running:

cat privkey.pem cert.pem > ssl.pem

Feeling a little silly.