xoxys.jellyfin/defaults/main.yml

47 lines
1.3 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_group: "{{ jellyfin_user }}"
jellyfin_extra_groups: []
2019-02-01 22:02:36 +01:00
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-10-17 20:58:18 +02:00
# @var jellyfin_log_level_console:description: >
# Possible value: `Verbose | Debug | Information | Warning | Error | Fatal`.
2019-02-02 03:27:11 +01:00
# Beware that the values are case sensitive!
2019-10-17 20:58:18 +02:00
# @end
2019-02-02 03:27:11 +01:00
jellyfin_log_level_console: Fatal
jellyfin_log_level_file: Information
jellyfin_selinux_fcontext:
- target: "{{ jellyfin_log_dir }}(/.*)?"
setype: var_log_t
jellyfin_selinux_restorecon:
- "-ir {{ jellyfin_log_dir }}"
2019-10-17 20:58:18 +02:00
# @var jellyfin_http_bind_port:description: >
# DONT change it! Changing the bind ports is currently not supported.
# @end
2019-02-01 23:05:15 +01:00
jellyfin_http_bind_port: 8096
2019-10-17 20:58:18 +02:00
# @var jellyfin_https_bind_port:description: >
# DONT change it! Changing the bind ports is currently not supported.
# @end
2019-02-01 23:05:15 +01:00
jellyfin_https_bind_port: 8920