Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/23c77706838aa2e5cf83ee036f3853a90acc4a68
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
17 additions and
3 deletions
@ -2,7 +2,7 @@
"name" : "Development Jellyfin Server - FFmpeg" ,
"image" : "mcr.microsoft.com/devcontainers/dotnet:8.0-jammy" ,
/ / r e s t o r e s n u g e t p a c k a g e s , i n s t a l l s t h e d o t n e t w o r k l o a d s a n d i n s t a l l s t h e d e v h t t p s c e r t i f i c a t e
"postStartCommand" : "dotnet restore; dotnet workload update; dotnet dev-certs https --trust; bash ./install-ffmpeg.sh",
"postStartCommand" : "dotnet restore; dotnet workload update; dotnet dev-certs https --trust; sudo bash \" ./.devcontainer/Dev - Server Ffmpeg/ install-ffmpeg.sh\" ",
/ / r e a d s t h e e x t e n s i o n s l i s t a n d i n s t a l l s t h e m
"postAttachCommand" : "cat .vscode/extensions.json | jq -r .recommendations[] | xargs -n 1 code --install-extension" ,
"features" : {
@ -1,5 +1,7 @@
#!/bin/bash
sudo wget https://repo.jellyfin.org/releases/server/ubuntu/versions/jellyfin-ffmpeg/6.0-8/jellyfin-ffmpeg6_6.0-8-focal_amd64.deb -O ffmpeg.deb
wget https://repo.jellyfin.org/releases/server/ubuntu/versions/jellyfin-ffmpeg/6.0.1-1/jellyfin-ffmpeg6_6.0.1-1-jammy_amd64.deb -O ffmpeg.deb
sudo apt update
sudo apt install -f ./ffmpeg.deb -y
rm ffmpeg.deb
rm ffmpeg.deb
@ -29,6 +29,18 @@
"stopAtEntry" : false ,
"internalConsoleOptions" : "openOnSessionStart"
} ,
{
"name" : "ghcs .NET Launch (nowebclient, ffmpeg)" ,
"type" : "coreclr" ,
"request" : "launch" ,
"preLaunchTask" : "build" ,
"program" : "${workspaceFolder}/Jellyfin.Server/bin/Debug/net8.0/jellyfin.dll" ,
"args" : [ "--nowebclient" , "--ffmpeg" , "/usr/share/jellyfin-ffmpeg/ffmpeg" ] ,
"cwd" : "${workspaceFolder}/Jellyfin.Server" ,
"console" : "internalConsole" ,
"stopAtEntry" : false ,
"internalConsoleOptions" : "openOnSessionStart"
} ,
{
"name" : ".NET Attach" ,
"type" : "coreclr" ,