jellyfin.env 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Jellyfin default configuration options
  2. # Use this file to override the default configurations; add additional
  3. # options with JELLYFIN_ADD_OPTS.
  4. # To override the user or this config file's location, use
  5. # /etc/systemd/system/jellyfin.service.d/override.conf
  6. #
  7. # This is a POSIX shell fragment
  8. #
  9. #
  10. # General options
  11. #
  12. # Program directories
  13. JELLYFIN_DATA_DIR="/var/lib/jellyfin"
  14. JELLYFIN_CONFIG_DIR="/etc/jellyfin"
  15. JELLYFIN_LOG_DIR="/var/log/jellyfin"
  16. JELLYFIN_CACHE_DIR="/var/cache/jellyfin"
  17. # web client path, installed by the jellyfin-web package
  18. # JELLYFIN_WEB_OPT="--webdir=/usr/share/jellyfin-web"
  19. # [OPTIONAL] ffmpeg binary paths, overriding the UI-configured values
  20. #JELLYFIN_FFMPEG_OPT="--ffmpeg=/usr/bin/ffmpeg"
  21. # [OPTIONAL] run Jellyfin as a headless service
  22. #JELLYFIN_SERVICE_OPT="--service"
  23. # [OPTIONAL] run Jellyfin without the web app
  24. #JELLYFIN_NOWEBAPP_OPT="--nowebclient"
  25. # [OPTIONAL] run Jellyfin with ASP.NET Server Garbage Collection (uses more RAM and less CPU than Workstation GC)
  26. # 0 = Workstation
  27. # 1 = Server
  28. #COMPlus_gcServer=1