From f4436c5a3800418ee7309af70aaf8a802ae77c58 Mon Sep 17 00:00:00 2001 From: Charlotte Som Date: Wed, 18 Dec 2024 21:10:39 +0000 Subject: [PATCH] charlotte.partners: redirect 2 bsky --- ngx/charlotte-partners.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ngx/charlotte-partners.ts b/ngx/charlotte-partners.ts index 0a103d6..91065df 100644 --- a/ngx/charlotte-partners.ts +++ b/ngx/charlotte-partners.ts @@ -15,6 +15,9 @@ export const config = ngx("server", [ "etag off", `root /srv/www/${domain}`, ]), + ngx("location = /", [ + "return 302 https://bsky.app/profile/charlotte.partners", + ]), ]); if (import.meta.main) console.log(config.build());