Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

BEST NGINX REVERSE PROXY CONF

geforce

Extended Member
Ext. Member
Joined
Dec 16, 2019
Messages
33
Reaction score
419
Points
64
Location
united kingdom
best nginx reverse proxy conf for a vps , zaps fast and leaks no main ip when runninng epg download , channnel download, solid script tunned by myself :)



PHP:
user www-data;
worker_processes auto; ###change to cores on server
pid /run/nginx.pid;

events {
        worker_connections 1024; ### adjust if needed
}

http {
        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 10;
        keepalive_requests 100000;
        types_hash_max_size 2048;
        server_tokens off;
        server_names_hash_bucket_size 128;
        server_name_in_redirect off;
        include /etc/nginx/mime.types;
        default_type application/octet-stream;
        limit_req_zone $binary_remote_addr zone=one:10m rate=3r/m;
        gzip on;
        gzip_disable "msie6";
        gzip_proxied any;
        gzip_comp_level 2;
        gzip_http_version 1.1;
        gzip_min_length 1100;
        gzip_buffers 16 8k;
        log_format main "888821_188888 $remote_addr+++$msec+++$request+++$status+++$host - $http_user_agent+++$time_local";
        client_header_timeout 12;

server {
        listen ###PORTS###;;
        listen ###PORTS###;;
        listen ###PORTS###;;
        listen ###PORTS###;
        server_name ###VPS IP###;





        access_log syslog:server=127.0.0.1,facility=local6,severity=info main;
        root /var/www/html;
        # Add index.php to the list if you are using PHP
        index index.html index.htm default.html default.htm;


location / {
      proxy_pass http://main ip:port;
      proxy_redirect off;
      proxy_http_version 1.1;
      proxy_set_header Connection "";
      proxy_set_header Host $http_host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Original-Scheme $scheme;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_pass_request_headers on;
      proxy_max_temp_file_size 0;
      client_max_body_size 10m;
      client_body_buffer_size 128k;
      client_body_timeout 12;
      keepalive_timeout 15;
      send_timeout 10;
      proxy_connect_timeout 90;
      proxy_send_timeout 90;
      proxy_read_timeout 90;
      proxy_buffer_size 4k;
      proxy_buffers 4 32k;
      proxy_busy_buffers_size 64k;
      proxy_temp_file_write_size 64k;
        }
        }
        }
 
Last edited by a moderator:

kaka_05

Extended Member
Ext. Member
Joined
Sep 21, 2019
Messages
45
Reaction score
166
Points
44
Location
Denmark
for what help this config proxy , i need to know more about it ?
 

jeff

Extended Member
Ext. Member
Joined
Sep 19, 2019
Messages
79
Reaction score
486
Points
104
Location
brazil
I just can't reproduce the channel through the proxy, he downloaded the line, but it doesn't reproduce in ts. Does anyone know why?
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

redhat

Administrator
Staff member
Administrator
Chief Moderator
Moderator
Joined
Jun 19, 2019
Messages
3,074
Reaction score
14,825
Points
134
Location
root[@]woi
I just can't reproduce the channel through the proxy, he downloaded the line, but it doesn't reproduce in ts. Does anyone know why?
I am sure @geforce will help you
 

redhat

Administrator
Staff member
Administrator
Chief Moderator
Moderator
Joined
Jun 19, 2019
Messages
3,074
Reaction score
14,825
Points
134
Location
root[@]woi
Can't download the Channel list with this config:


PHP:
user www-data;
worker_processes auto; ###change to cores on server
pid /run/nginx.pid;

events {
worker_connections 1024; ### adjust if needed
}

http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 10;
keepalive_requests 100000;
types_hash_max_size 2048;
server_tokens off;
server_names_hash_bucket_size 128;
server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
limit_req_zone $binary_remote_addr zone=one:10m rate=3r/m;
gzip on;
gzip_disable "msie6";
gzip_proxied any;
gzip_comp_level 2;
gzip_http_version 1.1;
gzip_min_length 1100;
gzip_buffers 16 8k;
log_format main "888821_188888 $remote_addr+++$msec+++$request+++$status+++$host - $http_user_agent+++$time_local";
client_header_timeout 12;

server {
listen 25500;
listen 55555;
listen 25463;
listen 25462;
server_name xxx.xxx.xxx.xxx;


access_log syslog:server=127.0.0.1,facility=local6,severity=info main;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm default.html default.htm;


location / {
proxy_pass http://xxx.xxx.xxx.xxx:25500;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Original-Scheme $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_request_headers on;
proxy_max_temp_file_size 0;
client_max_body_size 10m;
client_body_buffer_size 128k;
client_body_timeout 12;
keepalive_timeout 15;
send_timeout 10;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
}

The Real IP's has been changed wit xxx

1596804291858.png
 
Last edited:
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

jathe

Extended Member
Ext. Member
Joined
Feb 1, 2020
Messages
14
Reaction score
6
Points
14
Location
jalapa
any configuration for https proxy? it does not work with https links or lines
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

dishjuarez

Extended Member
Ext. Member
Joined
Dec 3, 2019
Messages
53
Reaction score
261
Points
64
Location
el paso
some kind of personal configuration to configure in this file?
 

geforce

Extended Member
Ext. Member
Joined
Dec 16, 2019
Messages
33
Reaction score
419
Points
64
Location
united kingdom
Can't download the Channel list with this config:


PHP:
user www-data;
worker_processes auto; ###change to cores on server
pid /run/nginx.pid;

events {
worker_connections 1024; ### adjust if needed
}

http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 10;
keepalive_requests 100000;
types_hash_max_size 2048;
server_tokens off;
server_names_hash_bucket_size 128;
server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
limit_req_zone $binary_remote_addr zone=one:10m rate=3r/m;
gzip on;
gzip_disable "msie6";
gzip_proxied any;
gzip_comp_level 2;
gzip_http_version 1.1;
gzip_min_length 1100;
gzip_buffers 16 8k;
log_format main "888821_188888 $remote_addr+++$msec+++$request+++$status+++$host - $http_user_agent+++$time_local";
client_header_timeout 12;

server {
listen 25500;
listen 55555;
listen 25463;
listen 25462;
server_name xxx.xxx.xxx.xxx;


access_log syslog:server=127.0.0.1,facility=local6,severity=info main;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm default.html default.htm;


location / {
proxy_pass http://xxx.xxx.xxx.xxx:25500;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Original-Scheme $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_request_headers on;
proxy_max_temp_file_size 0;
client_max_body_size 10m;
client_body_buffer_size 128k;
client_body_timeout 12;
keepalive_timeout 15;
send_timeout 10;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
}
I just can't reproduce the channel through the proxy, he downloaded the line, but it doesn't reproduce in ts. Does anyone know why?

Sorry for the delayed response, on your main server add this to the nginx.conf

set_real_ip_from PROXYIP/32;
real_ip_header X-Forwarded-For;
real_ip_recursive on;


under where it starts
server {

Also add the listen ports the proxy server is using so eg listen 8080, listen 3200, ect ect
The Real IP's has been changed wit xxx

View attachment 1151

Sorry for the delayed response, on your main server add this to the nginx.conf

set_real_ip_from PROXYIP/32;
real_ip_header X-Forwarded-For;
real_ip_recursive on;


under where it starts
server {

Also add the listen ports the proxy server is using so eg listen 8080, listen 3200, ect ect
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

workline17

Extended Member
Ext. Member
Joined
Sep 26, 2019
Messages
22
Reaction score
63
Points
24
Location
UK
Hi,
First all thanks!!!!
anyone wondering if the Vps is ome for it? i mean almost all the vps has a 1gbs will be enough for the amount of request? i am talking for main lb side.
thanks ?
 

Tebow99

Extended Member
Ext. Member
Joined
Mar 7, 2020
Messages
2
Reaction score
4
Points
11
Location
AtL
best nginx reverse proxy conf for a vps , zaps fast and leaks no main ip when runninng epg download , channnel download, solid script tunned by myself :)



PHP:
user www-data;
worker_processes auto; ###change to cores on server
pid /run/nginx.pid;

events {
        worker_connections 1024; ### adjust if needed
}

http {
        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 10;
        keepalive_requests 100000;
        types_hash_max_size 2048;
        server_tokens off;
        server_names_hash_bucket_size 128;
        server_name_in_redirect off;
        include /etc/nginx/mime.types;
        default_type application/octet-stream;
        limit_req_zone $binary_remote_addr zone=one:10m rate=3r/m;
        gzip on;
        gzip_disable "msie6";
        gzip_proxied any;
        gzip_comp_level 2;
        gzip_http_version 1.1;
        gzip_min_length 1100;
        gzip_buffers 16 8k;
        log_format main "888821_188888 $remote_addr+++$msec+++$request+++$status+++$host - $http_user_agent+++$time_local";
        client_header_timeout 12;

server {
        listen ###PORTS###;;
        listen ###PORTS###;;
        listen ###PORTS###;;
        listen ###PORTS###;
        server_name ###VPS IP###;





        access_log syslog:server=127.0.0.1,facility=local6,severity=info main;
        root /var/www/html;
        # Add index.php to the list if you are using PHP
        index index.html index.htm default.html default.htm;


location / {
      proxy_pass http://main ip:port;
      proxy_redirect off;
      proxy_http_version 1.1;
      proxy_set_header Connection "";
      proxy_set_header Host $http_host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Original-Scheme $scheme;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_pass_request_headers on;
      proxy_max_temp_file_size 0;
      client_max_body_size 10m;
      client_body_buffer_size 128k;
      client_body_timeout 12;
      keepalive_timeout 15;
      send_timeout 10;
      proxy_connect_timeout 90;
      proxy_send_timeout 90;
      proxy_read_timeout 90;
      proxy_buffer_size 4k;
      proxy_buffers 4 32k;
      proxy_busy_buffers_size 64k;
      proxy_temp_file_write_size 64k;
        }
        }
        }
sendfile off, tcp_nopush off, tcp_nodelay on, proxy_buffering off and you're missing an entire SSL block. If you're running http, someone somewhere is sniffing away.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock