Hosting Jellyfin with noip

Hi Balinus,

Struggling trying to get remote access to jellyfin. You post is the closest I’ve found since I’m running the server on Ubuntu 24.10 band installed jellyfin as a docker.

Using your Caddyfile
"my-jellyfin-server.duckdns.org {
reverse_proxy 127.0.0.1:8096

    # Enable the static file server.
    file_server

    # TLS DuckDNS
    tls {
            dns duckdns MY-API"

My draft version with commented questions :

xxxxx.ddns.net {
# LAN IP to dedicated IP of my jellyfin server
reverse_proxy 127.168.1.71:8096

    # Enable the static file server.
    file_server

    # TLS ddns
    tls {
# From my.noip.com, the DDNS key provided a user name and a DDNS key. don't know how to write the line below?
            dns ddns  # "my DDNS key' but they also assigned a username to the DDNS key. 
                             # Use "ddns for my hostname here or my username XXXXXX?) 
    }

}

Glenn