mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
24 lines
725 B
Plaintext
24 lines
725 B
Plaintext
# 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, the exec command, or this config file's location.
|
|
|
|
#
|
|
# This is a POSIX shell fragment
|
|
#
|
|
|
|
# General options
|
|
JELLYFIN_EXE="/usr/lib/jellyfin/bin/jellyfin.dll"
|
|
JELLYFIN_DATA="/var/lib/jellyfin"
|
|
JELLYFIN_RESTART_SCRIPT="/usr/lib/jellyfin/restart.sh"
|
|
JELLYFIN_ADD_OPTS=""
|
|
|
|
# init/upstart options
|
|
JELLYFIN_USER="jellyfin"
|
|
JELLYFIN_DOTNET="/usr/bin/dotnet"
|
|
JELLYFIN_COMMAND="$JELLYFIN_EXE -programdata $JELLYFIN_DATA -restartpath $JELLYFIN_RESTART_SCRIPT $JELLYFIN_ADD_OPTS"
|