Welcome! Log In Create A New Profile

Advanced

Stream DVB-T tv through reverse proxy with ssl

Posted by mapomme1108 
Stream DVB-T tv through reverse proxy with ssl
May 07, 2022 02:37PM
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 :)
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 295
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready