Merge pull request #883 from apoc4lyps/master

[nextcloud] fix file upload size limit
master
André Peters 2018-01-16 09:22:49 +01:00 committed by GitHub
commit 0c8cc70666
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -76,6 +76,7 @@ server {
fastcgi_pass phpfpm:9000;
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
client_max_body_size 10G;
}
location ~ ^/(?:updater|ocs-provider)(?:$|/) {

View File

@ -19,6 +19,7 @@
fastcgi_pass phpfpm:9000;
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
client_max_body_size 10G;
}
location ~ ^/nextcloud/(?:updater|ocs-provider)(?:$|/) {
try_files $uri/ =404;