Skip to content

Commit

Permalink
Use new TCS ACME GEANTOV ACME endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
gwarf authored Jun 12, 2024
1 parent 4287ae8 commit ab8f9f8
Showing 1 changed file with 5 additions and 5 deletions.
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> \

Check failure on line 139 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`HMAC` is not a recognized word. (unrecognized-spelling)

Check failure on line 139 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`hmac` is not a recognized word. (unrecognized-spelling)

Check failure on line 139 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`HMAC` is not a recognized word. (unrecognized-spelling)

Check failure on line 139 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`hmac` is not a recognized word. (unrecognized-spelling)
--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

Check failure on line 145 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`Unregistering` is not a recognized word. (unrecognized-spelling)

Check failure on line 145 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`Unregistering` is not a recognized word. (unrecognized-spelling)
# 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> \

Check failure on line 178 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`HMAC` is not a recognized word. (unrecognized-spelling)

Check failure on line 178 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`hmac` is not a recognized word. (unrecognized-spelling)

Check failure on line 178 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`HMAC` is not a recognized word. (unrecognized-spelling)

Check failure on line 178 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`hmac` is not a recognized word. (unrecognized-spelling)
--rsa-key-size 4096 \

Check failure on line 179 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`rsa` is not a recognized word. (unrecognized-spelling)

Check failure on line 179 in content/en/internal/collaboration-tools/certificates/_index.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`rsa` is not a recognized word. (unrecognized-spelling)
--email <CONTACT_EMAIL> \
Expand Down

1 comment on commit ab8f9f8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (5)

csr
hmac
newkey
rsa
Unregistering

To accept these unrecognized words as correct, you could run the following commands

... in a clone of the [email protected]:EGI-Federation/documentation.git repository
on the gwarf-patch-tcs branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/EGI-Federation/documentation/actions/runs/9487053821/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (21) from .github/actions/spelling/expect.txt and unrecognized words (5)

Dictionary Entries Covers Uniquely
cspell:node/dict/node.txt 891 3 1
cspell:php/dict/php.txt 1689 2
cspell:golang/dict/go.txt 2099 2
cspell:aws/aws.txt 218 1
cspell:python/src/python/python.txt 392 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:node/dict/node.txt
          cspell:php/dict/php.txt
          cspell:golang/dict/go.txt
          cspell:aws/aws.txt
          cspell:python/src/python/python.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''

Please sign in to comment.