From b6e913b85ca14312c13e9cc2236b551bed90cafb Mon Sep 17 00:00:00 2001 From: Neeldhara Misra Date: Mon, 6 Jul 2026 22:10:20 +0530 Subject: [PATCH] Use HTTPS for year redirects --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 46c6301..b16a6fd 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,7 +6,7 @@ server { index index.html; location ~ "^/([0-9]{4})/?$" { - return 302 "/?year=$1#events"; + return 302 "https://events.neeldhara.com/?year=$1#events"; } location / {