Update to 20.0.3 + optimize user experience
This commit is contained in:
parent
66ad5d4ad9
commit
37164d381e
2 changed files with 13 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM nextcloud:28.0.2-fpm-alpine
|
||||
FROM nextcloud:28.0.3-fpm-alpine
|
||||
|
||||
RUN set -ex; \
|
||||
\
|
||||
|
|
|
@ -85,8 +85,9 @@ http {
|
|||
return 301 $scheme://$host:$server_port/remote.php/dav;
|
||||
}
|
||||
|
||||
# set max upload size
|
||||
client_max_body_size 15G;
|
||||
# set max upload size and increase upload timeout:
|
||||
client_max_body_size 4G;
|
||||
client_body_timeout 300s;
|
||||
fastcgi_buffers 64 4K;
|
||||
|
||||
# Enable gzip but do not remove ETag headers
|
||||
|
@ -95,7 +96,7 @@ http {
|
|||
gzip_comp_level 4;
|
||||
gzip_min_length 256;
|
||||
gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
|
||||
gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;
|
||||
gzip_types application/atom+xml text/javascript application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/wasm application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;
|
||||
|
||||
# Uncomment if your server is build with the ngx_pagespeed module
|
||||
# This module is currently not supported.
|
||||
|
|
Loading…
Reference in a new issue