Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/docs/administration/reverse-proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ server {
# allow large file uploads
client_max_body_size 50000M;

# disable buffering uploads to prevent OOM on reverse proxy server and make uploads twice as fast (no pause)
proxy_request_buffering off;

# Set headers
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
Expand Down
Loading