puppet-prod/site/profiles/templates/jellyfin/sysconfig.erb
Ben Vincent 3d5d40f381 chore: minor jellyfin updates (#300)
- add jellyfin to video group, for access to gpu
- install intel related gpu drivers
- export lxc jellyfin to haproxy

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/300
2025-05-27 19:55:55 +10:00

39 lines
1.0 KiB
Plaintext

# Jellyfin default configuration options
# Use this file to override the default configurations; add additional
# options with JELLYFIN_ADD_OPTS.
# To override the user or this config file's location, use
# /etc/systemd/system/jellyfin.service.d/override.conf
#
# This is a POSIX shell fragment
#
#
# General options
#
# Program directories
JELLYFIN_DATA_DIR="<%= @lib_dir %>"
JELLYFIN_CONFIG_DIR="<%= @config_dir %>"
JELLYFIN_LOG_DIR="<%= @log_dir %>"
JELLYFIN_CACHE_DIR="<%= @cache_dir %>"
# web client path, installed by the jellyfin-web package
JELLYFIN_WEB_OPT="--webdir=<%= @jellyfin_web %>"
# [OPTIONAL] ffmpeg binary paths, overriding the UI-configured values
JELLYFIN_FFMPEG_OPT="--ffmpeg=<%= @ffmpeg_path %>"
# [OPTIONAL] run Jellyfin as a headless service
#JELLYFIN_SERVICE_OPT="--service"
# [OPTIONAL] run Jellyfin without the web app
#JELLYFIN_NOWEBAPP_OPT="--noautorunwebapp"
# [OPTIONAL] run Jellyfin with ASP.NET Server Garbage Collection (uses more RAM and less CPU than Workstation GC)
# 0 = Workstation
# 1 = Server
#COMPlus_gcServer=1