Hi, Im new to hiawatha, I was using nginx with this config:
location /deluge {
proxy_pass http://127.0.0.1:8112/;
proxy_set_header X-Deluge-Base "/deluge/";
ANd similar for transmission.
But I can't get it working on hiawatha using this:
DEFAULT WEBSITE
# It is wise to use your IP address as the hostname of the default website
# and give it a blank webpage. By doing so, automated webscanners won't find
# your possible vulnerable website.
#
Hostname = 127.0.0.1
#Read more at: https://www.vultr.com/docs/install-hiawatha-web-server-with-php-fpm-and-mysql-on-debian
WebsiteRoot = /media/repo
StartFile = index.php
AccessLogfile = /var/log/hiawatha/access.log
ErrorLogfile = /var/log/hiawatha/error.log
ExecuteCGI = yes
ReverseProxy ^/sonar http://127.0.0.1:8989 #This one works just fine
ReverseProxy ^/deluge http://127.0.0.1:8112