Compare commits

...

1 Commits

Author SHA1 Message Date
12fb2cef46 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>
2025-07-16 15:40:23 -03:00

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);
});