Remover slash generaba conflictos con certificados (#3)

Reviewed-on: #3
Co-authored-by: Luciano Giacchetta <giacchetta-@outlook.com>
Co-committed-by: Luciano Giacchetta <giacchetta-@outlook.com>
This commit is contained in:
Luciano Giacchetta 2025-07-16 15:40:23 -03:00 committed by Luciano Giacchetta
parent d91c1d13ff
commit 12fb2cef46

View File

@ -17,7 +17,7 @@ app.enable('trust proxy');
app.disable('x-powered-by');
app.set('etag', false);
app.get('/{*splat}', (req: Request, res: Response) => {
app.get('/', (req: Request, res: Response) => {
res.setHeader("Cache-Control", "public, max-age=14400");
res.sendStatus(200);
});