Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/202305143d35c55c3573166dd5c28412cb62cbfb/fedora You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/fedora
Gauvino a884b1f786
Refactor Dockerfile and build ()
1 year ago
..
.gitignore Port Fedora and CentOS builds and remove web build 5 years ago
Makefile Merge pull request from mihawk90/fedora-spec-rework 3 years ago
README.md Refactor Dockerfile and build () 1 year ago
jellyfin-firewalld.xml
jellyfin-selinux-launcher.sh Avoid shell expansion issues () 2 years ago
jellyfin-server-lowports.conf
jellyfin.env Backport pull request from jellyfin/release-10.8.z 1 year ago
jellyfin.override.conf
jellyfin.service Fix JELLYFIN_FFMPEG_OPT is not enabled in fedora ExecStart 1 year ago
jellyfin.spec Refactor Dockerfile and build () 1 year ago

README.md

Jellyfin RPM

Build Fedora Package with docker

Change into this directory cd rpm-package Run the build script ./build-fedora-rpm.sh. Resulting RPM and src.rpm will be in ../../jellyfin-*.rpm

ffmpeg

The RPM package for Fedora/CentOS requires some additional repositories as ffmpeg is not in the main repositories.

# ffmpeg from RPMfusion free
# Fedora
$ sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
# CentOS 8
$ sudo dnf localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm
# CentOS 9
$ sudo dnf localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-9.noarch.rpm

Building with dotnet

Jellyfin is build with --self-contained so no dotnet required for runtime.

# dotnet required for building the RPM
# Fedora
$ sudo dnf copr enable @dotnet-sig/dotnet
# CentOS 8
$ sudo rpm -Uvh https://packages.microsoft.com/config/rhel/8/packages-microsoft-prod.rpm
# CentOS 9
$ sudo rpm -Uvh https://packages.microsoft.com/config/rhel/9/packages-microsoft-prod.rpm

TODO

  • OpenSUSE