mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-05 14:07:37 +03:00
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:
parent
e991187f27
commit
dfec2b5ebd
2 changed files with 6 additions and 2 deletions
4
app.js
4
app.js
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue