From f1d3cff08604e305e6744ad02f31f603501466f7 Mon Sep 17 00:00:00 2001 From: scottmakestech <83726258+scottmakestech@users.noreply.github.com> Date: Wed, 11 Mar 2026 12:51:55 -0500 Subject: [PATCH] Fix YouTube embed referrer policy for Apache httpd post --- config/_default/server.toml | 10 ++++++++++ .../2017-10-17-acme-support-in-apache-httpd.markdown | 2 +- netlify.toml | 10 ++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/config/_default/server.toml b/config/_default/server.toml index 5fd5f6b54..5c7c6ac07 100644 --- a/config/_default/server.toml +++ b/config/_default/server.toml @@ -81,6 +81,16 @@ for = "/:lang/repository" # Cf https://github.com/letsencrypt/website/pull/976 Referrer-Policy = "strict-origin" +[[headers]] +for = "/2017/10/17/acme-support-in-apache-httpd" +[headers.values] +Referrer-Policy = "strict-origin-when-cross-origin" + +[[headers]] +for = "/2017/10/17/acme-support-in-apache-httpd/" +[headers.values] +Referrer-Policy = "strict-origin-when-cross-origin" + [[headers]] for = "/certs/*.pem" [headers.values] diff --git a/content/en/post/2017-10-17-acme-support-in-apache-httpd.markdown b/content/en/post/2017-10-17-acme-support-in-apache-httpd.markdown index c08391412..409f715de 100644 --- a/content/en/post/2017-10-17-acme-support-in-apache-httpd.markdown +++ b/content/en/post/2017-10-17-acme-support-in-apache-httpd.markdown @@ -15,7 +15,7 @@ ACME support being built in to one of the world’s most popular Web servers, Ap The Apache httpd ACME module is called mod_md. It’s currently in the [development version of httpd](https://svn.apache.org/viewvc/httpd/httpd/trunk/modules/md/) and a plan is being formulated to backport it to an httpd 2.4.x stable release. The mod_md code is also [available on GitHub](https://github.com/icing/mod_md). -
+ It’s also worth mentioning that the development version of Apache httpd now includes support for an [SSLPolicy directive](https://httpd.apache.org/docs/trunk/mod/mod_ssl.html#sslpolicy). Properly configuring TLS has traditionally involved making a large number of complex choices. With the SSLPolicy directive, admins simply select a modern, intermediate, or old TLS configuration, and sensible choices will be made for them. diff --git a/netlify.toml b/netlify.toml index 08bfc6250..9915cc8be 100644 --- a/netlify.toml +++ b/netlify.toml @@ -99,6 +99,16 @@ for = "/:lang/repository" # Cf https://github.com/letsencrypt/website/pull/976 Referrer-Policy = "strict-origin" +[[headers]] +for = "/2017/10/17/acme-support-in-apache-httpd" +[headers.values] +Referrer-Policy = "strict-origin-when-cross-origin" + +[[headers]] +for = "/2017/10/17/acme-support-in-apache-httpd/" +[headers.values] +Referrer-Policy = "strict-origin-when-cross-origin" + [[headers]] for = "/certs/*.pem" [headers.values]