在Ubuntu上实现Jellyfin远程控制,可参考以下步骤:
sudo apt update
,sudo apt install apt-transport-https ca-certificates gnupg curl -y
,mkdir -p /etc/apt/keyrings
,curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/jellyfin.gpg
,echo "deb [arch $(dpkg --print-architecture) signed-by=/etc/apt/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list
,sudo apt update
,sudo apt install jellyfin -y
。/etc/nginx/nginx.conf
或/etc/nginx/conf.d/default.conf
,添加server
配置块,将请求转发到http://localhost:8096
。http
改为https
。/etc/jellyfin/jellyfin.conf
或/etc/jellyfin/web.conf
,设置监听地址为0.0.0.0
,端口为所需端口(默认8096)。