From 8b1b62fab064370fa14a413c981422c547fbb801 Mon Sep 17 00:00:00 2001 From: KodeStar Date: Sun, 4 Feb 2018 23:34:51 +0000 Subject: [PATCH 1/2] Update readme.md --- readme.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/readme.md b/readme.md index 8eaff848..9661c84a 100644 --- a/readme.md +++ b/readme.md @@ -29,6 +29,15 @@ location / { try_files $uri $uri/ /index.php?$query_string; } ``` +Someone was using the same nginx setup to both run this and reverse proxy Plex, Plex is served from /web so their location was interferring with the /webfonts. + +Therefore, if your fonts aren't showing because you have a location for /web add the following +``` +location /webfont { + try_files $uri $uri/; +} +``` +If there are any other locations which might interefere with any of the folders in the /public folder, you might have to do the same for those as well, but it's a super fringe case. ## License From 607b173d4d22b98c8476aab670586b09b822c80c Mon Sep 17 00:00:00 2001 From: KodeStar Date: Sun, 4 Feb 2018 23:35:22 +0000 Subject: [PATCH 2/2] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 9661c84a..732b851f 100644 --- a/readme.md +++ b/readme.md @@ -33,7 +33,7 @@ Someone was using the same nginx setup to both run this and reverse proxy Plex, Therefore, if your fonts aren't showing because you have a location for /web add the following ``` -location /webfont { +location /webfonts { try_files $uri $uri/; } ```