File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff 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
163165server {
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
You can’t perform that action at this time.
0 commit comments