toomuchio / plex-nginx-reverseproxy

Configuration to serve Plex Media Center https://plex.tv using Nginx https://nginx.com
659 stars 94 forks source link

Client IP shown as NGINX IP #54

Closed jkristoph closed 2 years ago

jkristoph commented 3 years ago

Hello,

I have successfully configured nginx reverse proxy with your config and guide but i cannot figure out for the life of me why all client IP under plex show as the nginx IP.....

Forward real ip and host to Plex

    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    #When using ngx_http_realip_module change $proxy_add_x_forwarded_for to '$http_x_forwarded_for,$realip_remote_addr'
    proxy_set_header X-Forwarded-For $http_x_forwarded_for,$realip_remote_addr;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header Sec-WebSocket-Extensions $http_sec_websocket_extensions;
    proxy_set_header Sec-WebSocket-Key $http_sec_websocket_key;
    proxy_set_header Sec-WebSocket-Version $http_sec_websocket_version;

Would appreciate the help

Minds3t commented 2 years ago

Having the same issue. How can we fix it?