diff options
author | Alan Pearce | 2023-11-05 13:32:14 +0100 |
---|---|---|
committer | Alan Pearce | 2023-11-05 17:18:29 +0100 |
commit | 6c0b9fb5773f48d86008f737704b735c0787e788 (patch) | |
tree | 6c3fe0ab0274fd21b058d17e3160027c3466e1c2 /src | |
parent | 3a9b920d4981ac28becb9634ec964dc2e2104401 (diff) | |
download | website-6c0b9fb5773f48d86008f737704b735c0787e788.tar.lz website-6c0b9fb5773f48d86008f737704b735c0787e788.tar.zst website-6c0b9fb5773f48d86008f737704b735c0787e788.zip |
Automatically redirect other hostnames to the configured base_url
Diffstat (limited to 'src')
-rw-r--r-- | src/app.ts | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/app.ts b/src/app.ts index e33bc72..8ba2d8a 100644 --- a/src/app.ts +++ b/src/app.ts @@ -14,6 +14,9 @@ Sentry.init({ 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 @@ export const metricsServer = { 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 @@ export const 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())) { |