diff options
author | lain <lain@soykaf.club> | 2018-12-01 09:55:46 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-12-01 09:55:46 +0100 |
commit | c443c9bd72b04b8a24d904bc20fde0d4ffca71d7 (patch) | |
tree | 1044379e9e6867ded303f81a6ca49da83e01cfd2 /installation | |
parent | 1c67277c8031be2212d6faf84c143ac11462c87b (diff) | |
parent | 8c3ff06e35e11a40cf4eb35a41a2019b7496e62c (diff) | |
download | pleroma-c443c9bd72b04b8a24d904bc20fde0d4ffca71d7.tar.gz |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into validate-user-info
Diffstat (limited to 'installation')
-rw-r--r-- | installation/pleroma.nginx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index f0e684f2c..e1184fe77 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -70,10 +70,12 @@ server { client_max_body_size 16m; } - location /proxy { + location ~ ^/(media|proxy) { proxy_cache pleroma_media_cache; proxy_cache_lock on; proxy_ignore_client_abort on; + proxy_buffering off; + chunked_transfer_encoding on; proxy_pass http://localhost:4000; } } |