sean
Get a copy of your current LE certificate and its matching key from WF.
Add the domain to your Opalstack dashboard.
(Probably dumb questions ahead. Beware ☠)
As mentioned in some of the posts here, I've been using rsync
to migrate non-app files WF -> OS.
It works great.
But I always receive permission warnings on the ~/certificates
dir. Which, from what I can tell, holds all of the current and expired LE certificates. It's because the files are owned by root
and my user doesn't have read permissions (they're 640
).
It looks like:
- Current
.cert
and .key
can be read (because: They're owned by the user
, not root)
- Older (expired?)
.key
files can't be read (because: They're owned by root
)
❔ I don't think that should be a problem, right?
❔ Is it important, at all, to keep a backup (i.e.: record keeping) of the readable contents of this directory?
Thanks.