Skip to content

Instantly share code, notes, and snippets.

View shadycuz's full-sized avatar

Levi shadycuz

View GitHub Profile
@shadycuz
shadycuz / nginx.conf
Last active September 20, 2016 02:09 — forked from spikegrobstein/nginx.conf
Nginx Reverse Proxy config for Plex to prevent user from needing port or /web/index.html
upstream plex-upstream {
# change plex-server.example.com:32400 to the hostname:port of your plex server.
# this can be "localhost:32400", for instance, if Plex is running on the same server as nginx.
# I just use the IP and port of my server
server plex-server.example.com:32400;
}
server {
listen 80;