Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Let's Encrypt docs with info about Pelican/OSDF #210

Merged
merged 2 commits into from
Nov 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/security/host-certs/lets-encrypt.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,22 @@ Installation and Obtaining the Initial Certificate

1. Set up hostcert/hostkey links:

If using host certificates for Pelican/OSDF:
:::console
root@host # ln -sf /etc/letsencrypt/live/*/fullchain.pem /etc/pki/tls/certs/pelican.crt
root@host # ln -sf /etc/letsencrypt/live/*/privkey.pem /etc/pki/tls/private/pelican.key
root@host # chmod 0600 /etc/letsencrypt/archive/*/privkey*.pem

If using host certificates for other software:
:::console
root@host # ln -sf /etc/letsencrypt/live/*/cert.pem /etc/grid-security/hostcert.pem
root@host # ln -sf /etc/letsencrypt/live/*/privkey.pem /etc/grid-security/hostkey.pem
root@host # chmod 0600 /etc/letsencrypt/archive/*/privkey*.pem


Note that Pelican requires the full certificate chain, not just the certificate,
so the pelican.crt symlink needs to point to fullchain.pem, not cert.pem.

1. Restart services running on port 80 if there were any.


Expand Down
Loading