Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/latest/concepts/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,23 @@ With `basePath: "/my-app"`, a route registered at `/about` will respond to
mounted alongside other apps. The base path is available in handlers via
`ctx.config.basePath`.

### Reverse proxy support

When running behind a reverse proxy (nginx, Caddy, etc.), set `trustProxy` to
make `ctx.url` reflect the client-facing URL instead of the internal one:

```ts
const app = new App({ trustProxy: true });
```

With this enabled, Fresh reads `X-Forwarded-Proto` and `X-Forwarded-Host`
headers and rewrites `ctx.url` accordingly. For example, if your proxy
terminates TLS and forwards `X-Forwarded-Proto: https`, `ctx.url.protocol` will
be `https:` instead of `http:`.

> [warn]: Only enable `trustProxy` when your app is actually behind a trusted
> reverse proxy. Untrusted clients could otherwise spoof these headers.

All items are applied from top to bottom. This means that when you defined a
middleware _after_ a `.get()` handler, it won't be included.

Expand Down
15 changes: 15 additions & 0 deletions packages/fresh/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ export class App<State> {
root: ".",
basePath: config.basePath ?? "",
mode: config.mode ?? "production",
trustProxy: config.trustProxy ?? false,
};
}

Expand Down Expand Up @@ -392,6 +393,8 @@ export class App<State> {
this.#onError,
);

const trustProxy = this.config.trustProxy;

return async (
req: Request,
conn: Deno.ServeHandlerInfo = DEFAULT_CONN_INFO,
Expand All @@ -400,6 +403,18 @@ export class App<State> {
// Prevent open redirect attacks
url.pathname = url.pathname.replace(/\/+/g, "/");

// Apply X-Forwarded-* headers when behind a reverse proxy
if (trustProxy) {
const proto = req.headers.get("x-forwarded-proto");
if (proto) {
url.protocol = proto + ":";
}
const host = req.headers.get("x-forwarded-host");
if (host) {
url.host = host;
}
}

const method = req.method.toUpperCase() as Method;
const matched = router.match(method, url);
let { params, pattern, item: handler, methodMatch } = matched;
Expand Down
19 changes: 19 additions & 0 deletions packages/fresh/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ export interface FreshConfig {
* The mode Fresh can run in.
*/
mode?: "development" | "production";
/**
* When enabled, Fresh will respect `X-Forwarded-Proto` and
* `X-Forwarded-Host` headers to construct `ctx.url`. Enable
* this when running behind a reverse proxy.
Comment thread
bartlomieju marked this conversation as resolved.
*
* Only enable `trustProxy` when your app is actually behind a trusted
* reverse proxy. Untrusted clients could otherwise spoof these headers.
* @default false
*/
trustProxy?: boolean;
}

/**
Expand All @@ -27,6 +37,15 @@ export interface ResolvedFreshConfig {
* The mode Fresh can run in.
*/
mode: "development" | "production";
/**
* When enabled, Fresh will respect `X-Forwarded-Proto` and
* `X-Forwarded-Host` headers to construct `ctx.url`. Enable
* this when running behind a reverse proxy.
*
* Only enable `trustProxy` when your app is actually behind a trusted
* reverse proxy. Untrusted clients could otherwise spoof these headers.
*/
trustProxy: boolean;
}

export function parseDirPath(
Expand Down
4 changes: 4 additions & 0 deletions packages/fresh/src/middlewares/static_files_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ Deno.test("static files - etag in production", async () => {
root: "",
basePath: "",
mode: "production",
trustProxy: false,
},
},
);
Expand Down Expand Up @@ -134,6 +135,7 @@ Deno.test("static files - no etag in development", async () => {
root: "",
basePath: "",
mode: "development",
trustProxy: false,
},
},
);
Expand Down Expand Up @@ -191,6 +193,7 @@ Deno.test("static files - disables caching in development", async () => {
root: "",
basePath: "",
mode: "development",
trustProxy: false,
},
},
);
Expand All @@ -215,6 +218,7 @@ Deno.test("static files - enables caching in production", async () => {
root: "",
basePath: "",
mode: "production",
trustProxy: false,
},
},
);
Expand Down
1 change: 1 addition & 0 deletions packages/fresh/src/test_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const DEFAULT_CONFIG: ResolvedFreshConfig = {
root: "",
mode: "production",
basePath: "",
trustProxy: false,
};

export function serveMiddleware<T>(
Expand Down
Loading