xoxys.jellyfin/defaults/main.yml

56 lines
1.7 KiB
YAML

---
jellyfin_version: 10.3.7
jellyfin_user: jellyfin
jellyfin_user_home: "/home/{{ jellyfin_user }}"
# jellyfin_uid: # defaults to not set
jellyfin_group: "{{ jellyfin_user }}"
# jellyfin_gid: # defaults to not set
jellyfin_extra_groups: []
# Create separate LVM storage for jellyfin
jellyfin_lvm_enabled: False
# This variables are only necessary if jellyfin_lvm_enabled is 'True'
# Set physical volumes to use in LVM
# jellyfin_lvm_pvs: # ['/dev/sdb', '/dev/sdc']
# jellyfin_lvm_vg: # "vg_jellyfin"
# jellyfin_lvm_lv: # "lv_jellyfin"
# jellyfin_lvm_fstype: # ext4
# jellyfin_lvm_size: # "50G"
jellyfin_base_dir: "/opt/jellyfin"
jellyfin_conf_dir: "{{ jellyfin_base_dir }}/config"
jellyfin_data_dir: "{{ jellyfin_base_dir }}/data"
jellyfin_log_dir: "{{ jellyfin_base_dir }}/log"
jellyfin_logrotate_enabled: False
jellyfin_logrotate_config:
- log: "{{ jellyfin_log_dir }}/jellyfin.log"
options:
- weekly
- rotate 4
- maxsize 250K
- compress
- shred
# Possible: Verbose | Debug | Information | Warning | Error | Fatal
# Beware that the values are case sensitive!
jellyfin_log_level_console: Fatal
jellyfin_log_level_file: Information
# DONT CHANGE IT!
# Changing the bind ports is currently not supported
jellyfin_http_bind_port: 8096
jellyfin_https_bind_port: 8920
jellyfin_iptables_enabled: False
jellyfin_open_ports:
- name: allow_jellyfin_web
rules: |
-A INPUT -m state --state NEW -p tcp --dport {{ jellyfin_http_bind_port }} -j ACCEPT
state: present
# multicast (ssdp) will not really work with this, only workarount to prevent exception
- name: allow_jellyfin_multicast
rules: |
-A OUTPUT -m state --state NEW -p udp --destination 239.255.255.250 --dport 1900 -j ACCEPT
state: present