From 2ca39c829c51ba68445bf018a9dd09dd2682d229 Mon Sep 17 00:00:00 2001 From: rocalyte Date: Thu, 28 Dec 2017 23:28:51 -0800 Subject: [PATCH] Updated wiki to reflect nginx's blank window problem, which was caused by X-Frame-Options defaulting to "DENY". --- NGINX-Reverse-Proxy-for-Web-UI.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NGINX-Reverse-Proxy-for-Web-UI.md b/NGINX-Reverse-Proxy-for-Web-UI.md index 1ed15c7..973633f 100644 --- a/NGINX-Reverse-Proxy-for-Web-UI.md +++ b/NGINX-Reverse-Proxy-for-Web-UI.md @@ -9,3 +9,6 @@ location / { proxy_set_header Origin ''; } ``` +For some users, several windows in the Web UI will still be blank, such as when adding a new torrent from a URL/magnet or local file. If so, try adding the following line to the location block: + +`add_header X-Frame-Options "SAMEORIGIN";` \ No newline at end of file