Initial commit with working nginx and jellyfin

This commit is contained in:
2021-04-23 01:04:44 +02:00
commit f4310c2e7d
7 changed files with 65 additions and 0 deletions

View 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;
}
}