Automatically redirect other hostnames to the configured base_url
Alan Pearce alan@alanpearce.eu
Sun, 05 Nov 2023 13:32:14 +0100
3 files changed, 20 insertions(+), 1 deletions(-)
M config.toml → config.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 src/app.ts → src/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())) {