Skip to content

Commit 2d15d8b

Browse files
committed
Docs: add support status and example for IP identifiers.
1 parent 4f9b9dd commit 2d15d8b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ The module implements following specifications:
1515
- Only HTTP-01 challenge type is supported
1616
- [RFC8737] (ACME TLS Application-Layer Protocol Negotiation (ALPN) Challenge
1717
Extension)
18+
- [RFC8738] (ACME IP Identifier Validation Extension)
1819
- [draft-ietf-acme-profiles] (ACME Profiles Extension, version 00)
1920

2021
[NGINX]: https://nginx.org/
2122
[RFC8555]: https://datatracker.ietf.org/doc/html/rfc8555
2223
[RFC8737]: https://datatracker.ietf.org/doc/html/rfc8737
24+
[RFC8738]: https://datatracker.ietf.org/doc/html/rfc8738
2325
[draft-ietf-acme-profiles]: https://datatracker.ietf.org/doc/draft-ietf-acme-profiles/
2426

2527
## Getting Started
@@ -162,7 +164,10 @@ acme_shared_zone zone=ngx_acme_shared:1M;
162164
163165
server {
164166
listen 443 ssl;
165-
server_name .example.test;
167+
server_name .example.test
168+
192.0.2.1 # not supported by some ACME servers
169+
2001:db8::1 # not supported by some ACME servers
170+
;
166171
167172
acme_certificate example;
168173

0 commit comments

Comments
 (0)