jellyfin: Deploy Jellyfin media server
Jellyfin is a multimedia library manager. Clients can browse and stream music, movies, and TV shows from the server and play them locally (including in the browser).
This commit is contained in:
19
roles/jellyfin/tasks/httpd-proxy.yml
Normal file
19
roles/jellyfin/tasks/httpd-proxy.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
- name: ensure apache is configured to proxy for jellyfin
|
||||
template:
|
||||
src: jellyfin.httpd.conf.j2
|
||||
dest: /etc/httpd/conf.d/jellyfin.conf
|
||||
owner: root
|
||||
group: root
|
||||
mode: u=rw,go=r
|
||||
notify:
|
||||
- reload httpd
|
||||
tags:
|
||||
- apache
|
||||
|
||||
- name: ensure selinux is configured for apache reverse proxy
|
||||
seboolean:
|
||||
name: httpd_can_network_connect
|
||||
state: true
|
||||
persistent: true
|
||||
tags:
|
||||
- selinux
|
||||
Reference in New Issue
Block a user