Roxedus

plex

Oct 12th, 2017
748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 2.56 KB | None | 0 0
  1. #Must be set in the global scope see: https://forum.nginx.org/read.php?2,152294,152294
  2. #Why this is important especially with Plex as it makes a lot of requests http://vincent.bernat.im/en/blog/2011-ssl-session-reuse-rfc5077.html / https://www.peterbe.com/plog/ssl_session_cache-ab
  3. ssl_session_cache shared:SSL:10m;
  4. ssl_session_timeout 10m;
  5.  
  6. #Upstream to Plex
  7. upstream plex_backend {
  8.     server 10.0.0.18:32400;
  9.     keepalive 32;
  10. }
  11.  
  12. server {
  13.     listen 80;
  14.     listen 443 ssl http2; #http2 can provide a substantial improvement for streaming: https://blog.cloudflare.com/introducing-http2/
  15.     server_name plex.punny.no plex.domain.no;
  16.  
  17.  
  18.  
  19.     #Will ensure https is always used by supported browsers which prevents any server-side http > https redirects, as the browser will internally correct any request to https.
  20.     #Recommended to submit to your domain to https://hstspreload.org as well.
  21.     #!WARNING! Only enable this if you intend to only serve Plex over https, until this rule expires in your browser it WONT BE POSSIBLE to access Plex via http, remove 'includeSubDomains;' if you only want it to effect your Plex (sub-)domain.
  22.     #This is disabled by default as it could cause issues with some playback devices it's advisable to test it with a small max-age and only enable if you don't encounter issues. (Haven't encountered any yet)
  23.     #add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;
  24.  
  25.     #Plex has A LOT of javascript, xml and html. This helps a lot, but if it causes playback issues with devices turn it off. (Haven't encountered any yet)
  26.     gzip on;
  27.     gzip_vary on;
  28.     gzip_min_length 1000;
  29.     gzip_proxied any;
  30. #   gzip_types text/plain text/html text/css text/xml application/xml text/javascript application/x-javascript image/svg+xml;
  31.     gzip_disable "MSIE [1-6]\.";
  32.  
  33.     #Nginx default client_max_body_size is 1MB, which breaks Camera Upload feature from the phones.
  34.     #Increasing the limit fixes the issue. Anyhow, if 4K videos are expected to be uploaded, the size might need to be increased even more
  35.     client_max_body_size 100M;
  36.  
  37.     #Forward real ip and host to Plex
  38.     proxy_set_header Host $host;
  39.     proxy_set_header X-Real-IP $remote_addr;
  40.     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  41.     proxy_set_header X-Forwarded-Proto $scheme;
  42.  
  43.     #Websockets
  44.     proxy_http_version 1.1;
  45.     proxy_set_header Upgrade $http_upgrade;
  46.     proxy_set_header Connection "upgrade";
  47.  
  48.     #Buffering off send to the client as soon as the data is received from Plex.
  49.     proxy_redirect off;
  50.     proxy_buffering off;
  51.  
  52.     location / {
  53.         proxy_pass http://plex_backend;
  54.     }
  55.  
  56. }
Advertisement