Recently I’ve installed autobrr service following the instruction on the official website. What is strange, however, is the fact that I cannot set up a reverse proxy on lighttpd. In fact, I cannot even access the autobrr website through the local LAN computer - it only works via real vnc session.
It’s weird since all the other *arr services were configured in a similar manner and work flawlessly with a reverse proxy. Below I attach my lighttpd config
Required Information
G_DIETPI_VERSION_CORE=8
G_DIETPI_VERSION_SUB=24
G_DIETPI_VERSION_RC=1
G_GITBRANCH=‘master’
G_GITOWNER=‘MichaIng’
- Distro version - buster
- Kernel version | aarch64 GNU/Linux
Additional Information (if applicable)
- Software title | autobrr
- Was the software title installed freshly or updated/migrated? Fresh install
- Can this issue be replicated on a fresh installation of DietPi? Yes
Extra details
That’s my config of the lighttpd 10-proxy.conf file that works with all the *arr services apart from autobrr
> $HTTP["url"] =~ "^/readarr" {
> proxy.server = ( "" => ( ( "host" => "127.0.0.1", "port" => "8787" ) ) )
> proxy.header = ( "upgrade" => "enable" )
> }
> $HTTP["url"] =~ "^/autobrr" {
> proxy.server = ( "" => ( ( "host" => "127.0.0.1", "port" => "7474" ) ) )
> proxy.header = ( "upgrade" => "enable" )
> }
- …