Update to 20.0.3 + optimize user experience

This commit is contained in:
elkmaennchen 2024-03-28 18:57:39 +01:00
parent 66ad5d4ad9
commit 37164d381e
Signed by: elkmaennchen
GPG key ID: E5C850EB50335184
2 changed files with 13 additions and 12 deletions

View file

@ -1,4 +1,4 @@
FROM nextcloud:28.0.2-fpm-alpine FROM nextcloud:28.0.3-fpm-alpine
RUN set -ex; \ RUN set -ex; \
\ \

View file

@ -85,8 +85,9 @@ http {
return 301 $scheme://$host:$server_port/remote.php/dav; return 301 $scheme://$host:$server_port/remote.php/dav;
} }
# set max upload size # set max upload size and increase upload timeout:
client_max_body_size 15G; client_max_body_size 4G;
client_body_timeout 300s;
fastcgi_buffers 64 4K; fastcgi_buffers 64 4K;
# Enable gzip but do not remove ETag headers # Enable gzip but do not remove ETag headers
@ -95,7 +96,7 @@ http {
gzip_comp_level 4; gzip_comp_level 4;
gzip_min_length 256; gzip_min_length 256;
gzip_proxied expired no-cache no-store private no_last_modified no_etag auth; 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 # Uncomment if your server is build with the ngx_pagespeed module
# This module is currently not supported. # This module is currently not supported.