Reverse proxy for LAN pc's as well as local host

You can try the approach @openhabgs gave you, It’s a solid solution. You can simplify it even more to:

myddns.org {

    encode gzip

    ## Jellyseer    
    redir /seer /seer/
    handle_path /seer/* {
        reverse_proxy 192.168.1.9:5055
    }

    ## Jellyfin
    redir /fin /fin/
    handle_path /fin/* {
        reverse_proxy 192.168.1.5:8086
    }

    ## Drop everything else
    abort
}

Then, you can access both via:

https://myddns.org/seer
https://myddns.org/fin

However, some web apps do not like to share the same FQDN with other web apps:

If that’s the case here, you need either two FQDNs, or the same FQDN but each web app on its own port.