Custom subtitle font in Jellyfin

Install jellyfin in Container Manager Open Container Manager and create a project named jellyfin and create docker-compose.yml The following configuration uses nvidia hardware decoding. You can delete the nvidia content if it is not needed. version: "3.x" services: jellyfin: image: nyanmisaka/jellyfin:230414-amd64 container_name: jellyfin runtime: nvidia user: 1026:100 group_add: - '101' network_mode: host restart: unless-stopped deploy: resources: reservations: devices: - capabilities: [gpu] environment: - UID=1026 - GID=100 - GIDLIST=100,101 - NVIDIA_VISIBLE_DEVICES=all - NVIDIA_DRIVER_CAPABILITIES=all volumes: - /volume1/Media:/media - /volume1/docker/jellyfin:/config Try set the fallback font folder path I tried to put some woff font files in the /config/fonts directory, and then set the path in the dashboard Playback > Fallback font folder path, but it didn’t work.

Scheduled synchronization of iCloud photo library in Synology

Prepare user directory services and permissions Installing the Photos component will require the use of this service, which is theoretically enabled. Open Control Panel > User & Group > Advance, scroll to the bottom and check Enable user home service. Switch to File Services > NFS, check Enable NFS service. And then switch to Shared Folder, select homes and press the Edit button, switch to NFS Permissions and click Create, fill values like the below screenshot.

Use acme.sh to manage letsencrypt certificates

Installation curl https://get.acme.sh | sh -s [email protected] source ~/.bashrc Issue a cert # Cloudflare export CF_Token="sdfsdfsdfljlbjkljlkjsdfoiwje" export CF_Zone_ID="xxxxxxxxxx" acme.sh --issue --dns dns_cf -d blahblaho.com -d '*.blahblaho.com' --keylength ec-256 --server letsencrypt # fingerprint openssl x509 -noout -fingerprint -sha256 -in ~/.acme.sh/blahblaho.com_ecc/fullchain.cer # export pkcs12 file acme.sh --to-pkcs12 -d blahblaho.com --password 123456 --ecc Currently acme.sh supports most of the dns providers: https://github.com/acmesh-official/acme.sh/wiki/dnsapi Install the cert mkdir -p /usr/local/share/ssl acme.sh --install-cert -d blahblaho.com \ --cert-file /usr/local/share/ssl/blahblaho.