mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-06 06:27:39 +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
|
@ -7,3 +7,5 @@ CACHE_PERIOD=1h # duration for which static files' cached copies are valid in th
|
|||
#user agent and accept header that quora will see
|
||||
#AXIOS_USER_AGENT='axios/0.26.1'
|
||||
#AXIOS_ACCEPT='application/json, text/plain, */*'
|
||||
# add any value here (e.g.: 1, true, 'por favor') if you're using any service where http is the preferred method, else leave it blank
|
||||
NO_UPGRADE=
|
||||
|
|
2
app.js
2
app.js
|
@ -24,6 +24,8 @@ app.use(
|
|||
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