Initial commit with working nginx and jellyfin
This commit is contained in:
11
roles/jellyfin/templates/jellyfin.conf
Normal file
11
roles/jellyfin/templates/jellyfin.conf
Normal file
@ -0,0 +1,11 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name "jellyfin.{{ base_domain }}";
|
||||
set $jellyfin 192.168.0.107;
|
||||
#resolver 127.0.0.1 valid=30;
|
||||
|
||||
location / {
|
||||
proxy_pass http://$jellyfin:8096;
|
||||
proxy_set_header Host $host;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user