Skip to content

Commit

Permalink
Merge pull request #1255 from RitamDey/nginx-font-csp-fix-1
Browse files Browse the repository at this point in the history
Fixing font errors for NGINX HTTP reverse-proxy
  • Loading branch information
Shadowghost authored Jan 14, 2025
2 parents 82690d6 + 830bde6 commit 040a4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/general/networking/nginx.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ server {
# Enforces https content and restricts JS/CSS to origin
# External Javascript (such as cast_sender.js for Chromecast) must be whitelisted.
# NOTE: The default CSP headers may cause issues with the webOS app
add_header Content-Security-Policy "default-src https: data: blob: ; img-src 'self' https://* ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://www.gstatic.com https://www.youtube.com blob:; worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'";
add_header Content-Security-Policy "default-src https: data: blob: ; img-src 'self' https://* ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://www.gstatic.com https://www.youtube.com blob:; worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'; font-src 'self' data:";
location / {
# Proxy main Jellyfin traffic
Expand Down

0 comments on commit 040a4be

Please sign in to comment.