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

Use new TCS ACME GEANTOV ACME endpoint #660

Merged
merged 2 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
allowfullscreen
autoplay
csr
CVMFS
dearmor
delims
diracsgm
findstr
hmac
iframe
jscpd
jwt
lsb
markdownlint
mytoken
newkey
pem
prettierrc
reponame
rsa
sgm
tmp
toml
Unregistering
workflows
yyy
10 changes: 5 additions & 5 deletions content/en/internal/collaboration-tools/certificates/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,24 +134,24 @@ and if you are doing some manual management or testing.

```shell
$ sudo certbot register --no-eff-email \
--server https://acme.sectigo.com/v2/OV \
--server https://acme.sectigo.com/v2/GEANTOV \
--eab-kid <EAB_KID> \
--eab-hmac-key <EAB_HMAC_KEY> \
--email <CONTACT_EMAIL>

# Checking existing account
$ sudo certbot show_account --server https://acme.sectigo.com/v2/OV
$ sudo certbot show_account --server https://acme.sectigo.com/v2/GEANTOV

# Unregistering an account
# Beware: you won't any more be able to revoke certificate issued with the account
$ sudo certbot unregister --server https://acme.sectigo.com/v2/OV
$ sudo certbot unregister --server https://acme.sectigo.com/v2/GEANTOV
```

##### Requesting a certificate

```shell
$ sudo certbot certonly --standalone --non-interactive \
--server https://acme.sectigo.com/v2/OV \
--server https://acme.sectigo.com/v2/GEANTOV \
--domain fakedomaindonotexist.egi.eu
```

Expand All @@ -174,7 +174,7 @@ scripts. Email address is used for urgent renewal and security notices.

```shell
$ sudo certbot certonly --standalone --non-interactive --agree-tos \
--server https://acme.sectigo.com/v2/OV \
--server https://acme.sectigo.com/v2/GEANTOV \
--eab-kid <EAB_KID> --eab-hmac-key <EAB_HMAC_KEY> \
--rsa-key-size 4096 \
--email <CONTACT_EMAIL> \
Expand Down