Nginx proxy_pass

To be completed by the original poster:

CMS Version

Version 2.3.7

Player Type

Android

Player Version

R209

Issue

Hi everyone,
i’m try to use proxy_pass on vpn connection to CMS mapping 8001 to VPN 80

The authentication work well but the Player dosen’t download media.
There’s some config to do in order to able nginx to download? The FW is disable.

Follow the ngix config:
server {
listen 8001 default_server;
listen [::]:8001 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
proxy_pass http://10.8.0.18:80;
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;
client_max_body_size 4G;
}

ThanX

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.