fix: broken layout on Tor instances

added a new flag to optionally disable 'upgrade-insecure'requests' CSP directive which caused the breakage.
This commit is contained in:
uranuspucksaxophone 2022-09-12 16:19:45 +02:00 committed by GitHub
parent e991187f27
commit dfec2b5ebd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

4
app.js
View file

@ -20,10 +20,12 @@ const app = express();
// 1. IMPORTANT MIDDLWARES
app.use(compression()); // compressing responses
app.use(
helmet({
helmet({
contentSecurityPolicy: {
directives: {
'script-src': ["'self'", 'cdn.jsdelivr.net'],
'block-all-mixed-content': null, // deprecated.
'upgrade-insecure-requests': process.env.NO_UPGRADE ? null : [],
},
},
crossOriginEmbedderPolicy: false,