diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-27 16:12:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-27 16:12:41 +0200 |
commit | 8f608a4cb22ab232cfab20665050764b38bac9c7 (patch) | |
tree | 6a6785aae79bf5939ad7b7a50a1bd8031268d2b4 /support/nginx | |
parent | 030ccfce59a8cb8f2fee6ea8dd363ba635c5c5c2 (diff) | |
parent | c215e627b575d2c4085ccb222f4ca8d0237b7552 (diff) | |
download | PeerTube-8f608a4cb22ab232cfab20665050764b38bac9c7.tar.gz PeerTube-8f608a4cb22ab232cfab20665050764b38bac9c7.tar.zst PeerTube-8f608a4cb22ab232cfab20665050764b38bac9c7.zip |
Merge branch 'develop' into shorter-URLs-channels-accounts
Diffstat (limited to 'support/nginx')
-rw-r--r-- | support/nginx/peertube | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/support/nginx/peertube b/support/nginx/peertube index 00ce1d0dc..7c95c130c 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube | |||
@@ -78,6 +78,13 @@ server { | |||
78 | try_files /dev/null @api; | 78 | try_files /dev/null @api; |
79 | } | 79 | } |
80 | 80 | ||
81 | location = /api/v1/videos/upload-resumable { | ||
82 | client_max_body_size 0; | ||
83 | proxy_request_buffering off; | ||
84 | |||
85 | try_files /dev/null @api; | ||
86 | } | ||
87 | |||
81 | location = /api/v1/videos/upload { | 88 | location = /api/v1/videos/upload { |
82 | limit_except POST HEAD { deny all; } | 89 | limit_except POST HEAD { deny all; } |
83 | 90 | ||