mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-08 09:34:16 +00:00
Commenting out csp headers, since it broke iOS devices. Fixes #669
This commit is contained in:
parent
3c42aad2b1
commit
5a8557f08c
|
@ -11,7 +11,7 @@ import process from "process";
|
|||
import serialize from "serialize-javascript";
|
||||
import { App } from "../shared/components/app/app";
|
||||
import { SYMBOLS } from "../shared/components/common/symbols";
|
||||
import { httpBaseInternal, wsUriBase } from "../shared/env";
|
||||
import { httpBaseInternal } from "../shared/env";
|
||||
import {
|
||||
ILemmyConfig,
|
||||
InitialFetchRequest,
|
||||
|
@ -27,15 +27,16 @@ const [hostname, port] = process.env["LEMMY_UI_HOST"]
|
|||
const extraThemesFolder =
|
||||
process.env["LEMMY_UI_EXTRA_THEMES_FOLDER"] || "./extra_themes";
|
||||
|
||||
if (!process.env["LEMMY_UI_DEBUG"]) {
|
||||
server.use(function (_req, res, next) {
|
||||
res.setHeader(
|
||||
"Content-Security-Policy",
|
||||
`default-src 'none'; connect-src 'self' ${wsUriBase}; img-src * data:; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; form-action 'self'; base-uri 'self'`
|
||||
);
|
||||
next();
|
||||
});
|
||||
}
|
||||
// Commenting out for now, since this broke iOS / webkit browsers.
|
||||
// if (!process.env["LEMMY_UI_DEBUG"]) {
|
||||
// server.use(function (_req, res, next) {
|
||||
// res.setHeader(
|
||||
// "Content-Security-Policy",
|
||||
// `default-src 'none'; connect-src 'self' ${wsUriBase}; img-src * data:; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; form-action 'self'; base-uri 'self'`
|
||||
// );
|
||||
// next();
|
||||
// });
|
||||
// }
|
||||
const customHtmlHeader = process.env["LEMMY_UI_CUSTOM_HTML_HEADER"] || "";
|
||||
|
||||
server.use(express.json());
|
||||
|
|
Loading…
Reference in a new issue