You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
766 B
33 lines
766 B
# Jellyfin default configuration options
|
|
|
|
# Use this file to override the default configurations; add additional
|
|
# options with JELLYFIN_ADD_OPTS.
|
|
|
|
# Under systemd, use
|
|
# /etc/systemd/system/jellyfin.service.d/jellyfin.service.conf
|
|
# to override the user or this config file's location.
|
|
|
|
#
|
|
# This is a POSIX shell fragment
|
|
#
|
|
|
|
#
|
|
# General options
|
|
#
|
|
|
|
# Data directory
|
|
JELLYFIN_DATA="/var/lib/jellyfin"
|
|
# Restart script for in-app server control
|
|
JELLYFIN_RESTART_SCRIPT="/usr/lib/jellyfin/restart.sh"
|
|
# Additional options for the binary
|
|
JELLYFIN_ADD_OPTS=""
|
|
|
|
#
|
|
# SysV init/Upstart options
|
|
#
|
|
|
|
# Application username
|
|
JELLYFIN_USER="jellyfin"
|
|
# Full application command
|
|
JELLYFIN_ARGS="-programdata $JELLYFIN_DATA -restartpath $JELLYFIN_RESTART_SCRIPT $JELLYFIN_ADD_OPTS"
|