Skip to content

Instantly share code, notes, and snippets.

View gfelot's full-sized avatar
🏠
Working from home

Gil gfelot

🏠
Working from home
  • Epitech
  • Bordeaux
View GitHub Profile
@gfelot
gfelot / nginx_plex.conf
Created February 10, 2016 23:33 — forked from spikegrobstein/nginx.conf
nginx config for proxying requests for plex over a hostname-based virtualhost.
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.
server plex-server.example.com:32400;
}
server {
listen 80;
# server names for this server.