1
0

set X-Robots-Tag to disable indexing API endpoints

This commit is contained in:
Hazelnoot
2025-06-13 23:18:06 -04:00
parent 99bf315351
commit b44abe0eaa
5 changed files with 23 additions and 0 deletions
@@ -70,6 +70,10 @@ export class FileServerService {
fastify.addHook('onRequest', (request, reply, done) => {
reply.header('Content-Security-Policy', 'default-src \'none\'; img-src \'self\'; media-src \'self\'; style-src \'unsafe-inline\'');
reply.header('Access-Control-Allow-Origin', '*');
// Tell crawlers not to index files endpoints.
// https://developers.google.com/search/docs/crawling-indexing/block-indexing
reply.header('X-Robots-Tag', 'noindex');
done();
});