Merge pull request #883 from apoc4lyps/master

[nextcloud] fix file upload size limit
This commit is contained in:
André Peters
2018-01-16 09:22:49 +01:00
committed by GitHub
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;