Quantcast
Channel: Nginx Forum - How to...
Viewing all articles
Browse latest Browse all 4759

Stream DVB-T tv through reverse proxy with ssl

$
0
0
Hello,

I am setting up a reverse proxy with ssl with nginx for TVMosaic to watch DVB-T tv on my Android phone.

Live tv is working on the same computer TVMosaic is installed on but not on another computer on the lan or from Android.

Here is my set up :


I have added this line to nginx.conf :

include "C:/nginx-1.21.6/conf/sites-available/tvmosaic.conf";



I have created the file tvmosaic.conf in sites-available subfolder with this content :

server {
listen 9670 ssl;

server_name xxxx.xx.net;

ssl_certificate C:/nginx-1.21.6/ssl/letsencrypt/cert.pem;

ssl_certificate_key C:/nginx-1.21.6/ssl/letsencrypt/cert.key;

ssl_session_cache builtin:1000 shared:SSL:10m;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;

ssl_prefer_server_ciphers on;

access_log C:/nginx-1.21.6/conf/access.log;

location / {
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 X-Forwarded-Proto $scheme;
proxy_pass http://192.168.1.30:9270;
proxy_read_timeout 90;
}
}

I am new to nginx and I don't know what to do.

Help would be appreciated :)

Viewing all articles
Browse latest Browse all 4759

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>