Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
eternal-flame-AD 2024-10-19 03:39:28 -05:00
parent 238fb2727d
commit 65c85ea922
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -20,11 +20,11 @@ export function makeHstsHook(host: string, preload: boolean = false): onRequestH
reply.header('strict-transport-security', 'max-age=31536000; includeSubDomains; preload');
}
done();
}
};
} else {
return (request, reply, done) => {
reply.header('strict-transport-security', 'max-age=15552000');
done();
}
};
}
}
}