Skip to content

Commit e9c42fd

Browse files
committed
spec(backend/fastify): set maxParamLength to 1024
1 parent 155ce40 commit e9c42fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/backend/src/server/ServerService.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ export class ServerService implements OnApplicationShutdown {
7878
@bindThis
7979
public async launch(): Promise<void> {
8080
const fastify = Fastify({
81-
trustProxy: true,
8281
logger: false,
82+
maxParamLength: 1024,
83+
trustProxy: true,
8384
});
8485
this.#fastify = fastify;
8586

0 commit comments

Comments
 (0)