|
@@ -0,0 +1,23 @@
|
|
|
|
+# {{ ansible_managed }}
|
|
|
|
+
|
|
|
|
+# You need to enable the setting "PROXY protocol & X-Forwarded For"
|
|
|
|
+# in the tvheadend web interface. This setting can be found in
|
|
|
|
+# "Configuration" -> "General" -> "Base" in the "HTTP Server Settings" Group.
|
|
|
|
+
|
|
|
|
+server {
|
|
|
|
+ listen 80;
|
|
|
|
+
|
|
|
|
+ server_name tvheadend.*;
|
|
|
|
+
|
|
|
|
+ client_max_body_size 0;
|
|
|
|
+
|
|
|
|
+ location / {
|
|
|
|
+ proxy_pass http://127.0.0.1:9981;
|
|
|
|
+ proxy_set_header Host $host;
|
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
+ proxy_set_header Upgrade $http_upgrade;
|
|
|
|
+ proxy_set_header Connection "upgrade";
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|