xoxys.jellyfin/defaults/main.yml

59 lines
1.8 KiB
YAML
Raw Normal View History

2019-02-01 21:30:07 +01:00
---
2019-07-30 23:02:40 +02:00
jellyfin_version: 10.3.7
2019-02-01 21:30:07 +01:00
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: []
2019-02-01 22:02:36 +01:00
# 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"
2019-02-01 23:05:15 +01:00
jellyfin_logrotate_enabled: False
jellyfin_logrotate_config:
- log: "{{ jellyfin_log_dir }}/jellyfin.log"
options:
- weekly
2019-08-08 23:21:31 +02:00
- rotate 5
- maxsize 512K
2019-02-01 23:05:15 +01:00
- compress
2019-08-08 23:21:31 +02:00
- delaycompress
- "create 640 {{ jellyfin_user }} {{ jellyfin_group }}"
2019-02-01 23:05:15 +01:00
2019-07-30 23:17:18 +02:00
jellyfin_packages_extra: []
2019-02-02 03:27:11 +01:00
# Possible: Verbose | Debug | Information | Warning | Error | Fatal
# Beware that the values are case sensitive!
jellyfin_log_level_console: Fatal
jellyfin_log_level_file: Information
2019-02-01 23:05:15 +01:00
# 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