-
Notifications
You must be signed in to change notification settings - Fork 857
Document OCSP remap requirement #12952
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -334,6 +334,14 @@ Authority Information Access field of the signed certificate. For example:: | |
| OCSP - URI:http://ocsp.digicert.com | ||
| CA Issuers - URI:http://cacerts.digicert.com/DigiCertSHA2SecureServerCA.crt | ||
|
|
||
| Before ATS 10, OCSP fetches were handled by OpenSSL. Starting in ATS 10, | ||
| |TS| performs the OCSP fetch itself through FetchSM, so the OCSP responder URL | ||
| must also be reachable through :file:`remap.config`. For example, if the | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This shouldn't be true.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, good point. OK, I'll close this PR. The remap.config rules shouldn't be needed for OCSP fetch. |
||
| certificate points to ``http://ocsp.digicert.com/`` as its OCSP responder, add | ||
| the following mapping:: | ||
|
|
||
| map http://ocsp.digicert.com/ http://ocsp.digicert.com/ | ||
|
|
||
| |TS| can also use prefetched OCSP stapling responses if ssl_ocsp_name parameter | ||
| is used in :file:`ssl_multicert.config`. Take into account that when using prefetched | ||
| OCSP stapling responses, |TS| will not refresh them and it should be done | ||
|
|
@@ -395,4 +403,3 @@ To configure Split DNS: | |
| enabled: 1 | ||
|
|
||
| #. Run the command :option:`traffic_ctl config reload` to apply the configuration changes. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -182,6 +182,16 @@ The following :file:`records.yaml` changes have been made: | |
| allocating iobuffers and cache volumes from hugepages if configured in the | ||
| system. | ||
| - The records.yaml entry ``proxy.config.plugin.compiler_path`` has been added to specify an optional compiler tool path for compiling plugins. | ||
| - If OCSP stapling is enabled, ATS 10 and later fetch OCSP responses through | ||
| FetchSM instead of OpenSSL. Add the OCSP responder URL from the certificate | ||
| to :file:`remap.config`. For example, a certificate that uses | ||
| ``http://ocsp.digicert.com/`` needs the following mapping: | ||
|
|
||
| .. code-block:: none | ||
|
|
||
| map http://ocsp.digicert.com/ http://ocsp.digicert.com/ | ||
|
|
||
| See :ref:`admin-ocsp-stapling` for more details. | ||
|
Comment on lines
182
to
+194
|
||
|
|
||
| The following changes have been made to the :file:`sni.yaml` file: | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line 338 has
||TS|(double pipe), which will render incorrectly in Sphinx and likely break the|TS|substitution. Replace it with|TS|.