Skip to content
This repository was archived by the owner on Jun 28, 2023. It is now read-only.

Using arch rtorrentvpn behind nginx reverse proxy

Donald Webster edited this page Jan 11, 2019 · 3 revisions

If your nginx powered arch-rtorrentvpn is behind another nginx reverse proxy and you're trying to use PHP, you might find that the front most nginx is trying to process php files on the arch-rtorrentvpn. The solution seems to be a simple ^~ in your location /rutorrent block, like...

location ^~ /rutorrent/ {
  proxy_pass http://192.168.1.2:9080/;
}
Clone this wiki locally