jellyfin 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Jellyfin default configuration options
  2. # This is a POSIX shell fragment
  3. # Use this file to override the default configurations; add additional
  4. # options with JELLYFIN_ADD_OPTS.
  5. # Under systemd, use
  6. # /etc/systemd/system/jellyfin.service.d/jellyfin.service.conf
  7. # to override the user or this config file's location.
  8. #
  9. # General options
  10. #
  11. # Program directories
  12. JELLYFIN_DATA_DIR="/var/lib/jellyfin"
  13. JELLYFIN_CONFIG_DIR="/etc/jellyfin"
  14. JELLYFIN_LOG_DIR="/var/log/jellyfin"
  15. JELLYFIN_CACHE_DIR="/var/cache/jellyfin"
  16. # web client path, installed by the jellyfin-web package
  17. JELLYFIN_WEB_OPT="--webdir=/usr/share/jellyfin/web"
  18. # Restart script for in-app server control
  19. JELLYFIN_RESTART_OPT="--restartpath=/usr/lib/jellyfin/restart.sh"
  20. # ffmpeg binary paths, overriding the system values
  21. JELLYFIN_FFMPEG_OPT="--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"
  22. # [OPTIONAL] run Jellyfin as a headless service
  23. #JELLYFIN_SERVICE_OPT="--service"
  24. # [OPTIONAL] run Jellyfin without the web app
  25. #JELLYFIN_NOWEBAPP_OPT="--nowebclient"
  26. # [OPTIONAL] run Jellyfin with ASP.NET Server Garbage Collection (uses more RAM and less CPU than Workstation GC)
  27. # 0 = Workstation
  28. # 1 = Server
  29. #COMPlus_gcServer=1
  30. #
  31. # SysV init/Upstart options
  32. #
  33. # Application username
  34. JELLYFIN_USER="jellyfin"
  35. # Full application command
  36. JELLYFIN_ARGS="$JELLYFIN_WEB_OPT $JELLYFIN_RESTART_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT"