xoxys.jellyfin/defaults/main.yml
Robert Kaussow 1f71b639f6
Some checks failed
continuous-integration/drone/push Build is failing
finish installation tasks
2019-02-01 23:05:15 +01:00

46 lines
1.3 KiB
YAML

---
jellyfin_version: 10.1
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
# 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