storage
Ansible role that provisions my storage server.
571 B•J2
jellyfin.env.j2
571 B • 23 lines • plaintext
1# templates/jellyfin.env.j2
2# Jellyfin Media Server Environment Configuration
3# Generated by Ansible - DO NOT EDIT MANUALLY
4
5# User and Group Configuration
6PUID={{ storage_uid }}
7PGID={{ storage_gid }}
8TZ={{ storage_timezone }}
9
10# Jellyfin Configuration
11JELLYFIN_PublishedServerUrl=http://{{ ansible_default_ipv4.address }}:{{ jellyfin_host_port }}
12
13# CPU Transcoding Optimization (iGPU acceleration)
14FFMPEG_THREADS=4
15
16# Media Directory
17MEDIA_DIR={{ jellyfin_media_dir }}
18
19# Cache and Config Paths
20CONFIG_DIR={{ jellyfin_config_dir }}
21CACHE_DIR={{ jellyfin_cache_dir }}
22
23