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

View file

@ -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
View file

@ -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,