Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion doc/admin-guide/security/index.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment on lines +337 to +338
Copy link

Copilot AI Mar 10, 2026

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|.

Copilot uses AI. Check for mistakes.
must also be reachable through :file:`remap.config`. For example, if the
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This shouldn't be true.
#10146

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The 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
Expand Down Expand Up @@ -395,4 +403,3 @@ To configure Split DNS:
enabled: 1

#. Run the command :option:`traffic_ctl config reload` to apply the configuration changes.

10 changes: 10 additions & 0 deletions doc/release-notes/upgrading.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

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

This new bullet is placed under 'The following records.yaml changes have been made', but it describes a remap.config requirement (not a records.yaml change). Consider moving this note to a more appropriate upgrade subsection (e.g., SSL/OCSP, or a general 'behavior changes' section) to avoid misleading readers.

Copilot uses AI. Check for mistakes.

The following changes have been made to the :file:`sni.yaml` file:

Expand Down
Loading