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
commit e8248ecf3a5d5e8434e2b41fb879d0a37e76a8da 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]
