Skip to content

Commit d9b7fb6

Browse files
authored
nginx: allow large file uploads for /api/v4/files endpoint (#184)
* nginx: allow large file uploads for /api/v4/files endpoint * Up default client_max_body_size to 100M
1 parent 1423a77 commit d9b7fb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nginx/conf.d/default.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ server {
111111
}
112112

113113
location / {
114-
client_max_body_size 50M;
114+
client_max_body_size 100M;
115115
proxy_set_header Connection "";
116116
proxy_set_header Host $http_host;
117117
proxy_set_header X-Real-IP $remote_addr;

0 commit comments

Comments
 (0)