From 58d63a4c14027797f0d25ee4f357a8b68b650023 Mon Sep 17 00:00:00 2001 From: "protostatis.dev" Date: Tue, 10 Feb 2026 17:43:16 -0600 Subject: [PATCH] Add /tiktok redirect with UTM attribution for bio link tracking TikTok bio now points to panicradar.ai/tiktok which 302-redirects to the homepage with UTM params, enabling GA4/Plausible attribution. Co-Authored-By: Claude Opus 4.6 --- dashboard-frontend/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dashboard-frontend/nginx.conf b/dashboard-frontend/nginx.conf index d6d8553..4807e67 100644 --- a/dashboard-frontend/nginx.conf +++ b/dashboard-frontend/nginx.conf @@ -78,6 +78,11 @@ server { return 404; } + # Social bio redirects with UTM attribution + location = /tiktok { + return 302 "https://panicradar.ai/?utm_source=tiktok&utm_medium=social&utm_campaign=bio"; + } + # Static files - React SPA location / { try_files $uri $uri/ /index.html;