Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Disable buffer on nginx to reduce streaming load
Browse files Browse the repository at this point in the history
Without this nginx will buffer everything making it unresponsive and bringing all local vhosts down.
Maybe optional only disable the buffer on a specified location, but this works best for me.
  • Loading branch information
Cyllos42 authored Apr 22, 2019
1 parent 551dcb0 commit c75b01a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/administrator-docs/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ server {
# proxy_set_header X-Forwarded-Proto $scheme;
# proxy_set_header X-Forwarded-Protocol $scheme;
# proxy_set_header X-Forwarded-Host $http_host;
#
# # Disable buffering when the nginx proxy gets very resource heavy upon streaming
# proxy_buffering off;
# }
# location /embywebsocket {
# # Proxy Jellyfin Websockets traffic
Expand Down

0 comments on commit c75b01a

Please sign in to comment.