diff options
author | Matthew Fennell <matthew@fennell.dev> | 2024-06-01 00:08:26 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2024-06-01 00:08:26 +0100 |
commit | 5d6b122eb8165bb8815b232b2763dcf01cf94be1 (patch) | |
tree | e3544d1ac20ee06759c6c790cb64d32fa31c2c1f | |
parent | a0b3d87fa2383c1f7187cd15187b431f0aeb7e31 (diff) |
Correct CAA record reference in documentation
In the README section for acme account information, I had incorrectly referred
to the CAA records as TLSA records (which do not need this information at all).
This commit fixes that mistake.
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -85,8 +85,8 @@ inventory/ ``` ```yaml -acme_account_uri_nonprod: # the staging uri we should add TLSA records for -acme_account_uri_prod: # the prod uri we should add TLSA records for +acme_account_uri_nonprod: # the staging uri we should add CAA records for +acme_account_uri_prod: # the prod uri we should add CAA records for anonymous_login: # should we allow anonymous users on the server? e.g. true borg_private_key_path: # e.g. /home/matthew/.ssh/some-key borg_repo: # the repo to use, e.g. ssh://example.org/./repo |