Skip to content

Instantly share code, notes, and snippets.

@qudiqudi
qudiqudi / plex.nginx.conf
Created April 30, 2020 07:44 — forked from ometa/plex.nginx.conf
NGINX reverse proxy in front of Plex media server v1.3.3.3148
# This example assumes the NGINX proxy is on the same host as the Plex Media Server.
# To configure Plex Media Server to serve requests without requiring authentication,
# ensure that your LAN subnet is correctly added to the advanced server setting called
# "List of IP addresses and networks that are allowed without auth". Example:
# 192.168.0.1/24
upstream plex-upstream {
server 127.0.0.1:32400;
}