This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airflow-site.git
The following commit(s) were added to refs/heads/staging by this push:
new 5a844a6af3 Add registry rewrite rule to proxy /registry/ through
CloudFront
5a844a6af3 is described below
commit 5a844a6af3b320cccd53857a43ae59fdba032c62
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Feb 20 12:06:57 2026 +0000
Add registry rewrite rule to proxy /registry/ through CloudFront
---
landing-pages/site/static/.htaccess | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/landing-pages/site/static/.htaccess
b/landing-pages/site/static/.htaccess
index e0994e6c16..2b3e00b7d7 100644
--- a/landing-pages/site/static/.htaccess
+++ b/landing-pages/site/static/.htaccess
@@ -1,7 +1,8 @@
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/docs [OR]
-RewriteCond %{REQUEST_URI} ^/schemas/
+RewriteCond %{REQUEST_URI} ^/schemas/ [OR]
+RewriteCond %{REQUEST_URI} ^/registry/
RewriteCond %{REQUEST_URI} !^/docs/index\.html$ [NC]
RewriteCond %{REQUEST_URI} !^/docs/index\.xml$ [NC]
RewriteRule (.*) https://d7fnmbhf26p21.cloudfront.net/$1 [P]