all repos — website @ 6c0b9fb5773f48d86008f737704b735c0787e788

My website

Automatically redirect other hostnames to the configured base_url
Alan Pearce alan@alanpearce.eu
Sun, 05 Nov 2023 13:32:14 +0100
commit

6c0b9fb5773f48d86008f737704b735c0787e788

parent

3a9b920d4981ac28becb9634ec964dc2e2104401

3 files changed, 20 insertions(+), 1 deletions(-)

jump to
M config.tomlconfig.toml
@@ -1,5 +1,6 @@ default_language = "en-GB"
 base_url = "https://alanpearce.eu"
+redirect_other_hostnames = true
 
 title = "Alan Pearce"
 description = "Developer, Emacs User"
M fly.tomlfly.toml
@@ -27,3 +27,5 @@ interval = "30s"   method = "GET"
   timeout = "5s"
   path = "/health.txt"
+  [http_service.checks.headers]
+    Host = "alanpearce.eu"
M src/app.tssrc/app.ts
@@ -14,6 +14,9 @@ release: `homestead@${Bun.env.FLY_MACHINE_VERSION}`,   tracesSampleRate: 1.0,
 });
 
+const expectedHostURL = new URL(
+  Bun.env.NODE_ENV === "production" ? config.base_url : "http://localhost:3000",
+);
 const defaultHeaders = {
   ...config.extra.headers,
   vary: "Accept-Encoding",
@@ -128,7 +131,8 @@ } satisfies Serve; 
 export const server = {
   fetch: async function (request) {
-    const pathname = new URL(request.url).pathname.replace(/\/\/+/g, "/");
+    const url = new URL(request.url);
+    const pathname = url.pathname.replace(/\/\/+/g, "/");
     const endTimer = metrics.requestDuration.startTimer({ path: pathname });
     const transaction = Sentry.startTransaction({
       name: pathname,
@@ -136,10 +140,22 @@ op: "http.server",       description: `${request.method} ${pathname}`,
       tags: {
         url: request.url,
+        "http.host": request.headers.get("host"),
         "http.method": request.method,
         "http.user_agent": request.headers.get("user-agent"),
       },
     });
+    if (
+      config.redirect_other_hostnames &&
+      request.headers.get("host") !== expectedHostURL.host
+    ) {
+      return new Response("", {
+        status: 301,
+        headers: {
+          location: new URL(pathname, expectedHostURL).toString(),
+        },
+      });
+    }
     try {
       const file = files.get(pathname);
       if (file && (await file.handle.exists())) {