I am trying configure Lighttpd to redirect/handle port-specific requests to a subdomain.
I can access my plex server via https://www.example.com:32400/
I would like that to be redirected to https://plex.example.com/
I have the following config, but there isn't any SSL associated with the link. SSL is working fine on the main page, but nothing else.
$HTTP["host"] == "plex.example.com" { proxy.server = ( "" => ( ( "host" => "127.0.0.1", "port" => 32400 ) ) ) }