View nginx.conf
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; |