Updated wiki to reflect nginx's blank window problem, which was caused by X-Frame-Options defaulting to "DENY".

rocalyte 2017-12-28 23:28:51 -08:00
parent fa2f458949
commit 2ca39c829c

@ -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";`