Skip to content

Commit

Permalink
spec(backend/fastify): set maxParamLength to 1024
Browse files Browse the repository at this point in the history
  • Loading branch information
u1-liquid committed Feb 1, 2025
1 parent 155ce40 commit e9c42fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/backend/src/server/ServerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ export class ServerService implements OnApplicationShutdown {
@bindThis
public async launch(): Promise<void> {
const fastify = Fastify({
trustProxy: true,
logger: false,
maxParamLength: 1024,
trustProxy: true,
});
this.#fastify = fastify;

Expand Down

0 comments on commit e9c42fd

Please sign in to comment.