diff --git a/README.md b/README.md index 1d09434..e671920 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. -**Shipped version:** 12.0.1 +**Shipped version:** 12.1.0 ## Screenshots diff --git a/README_fr.md b/README_fr.md index de5db96..6fb239a 100644 --- a/README_fr.md +++ b/README_fr.md @@ -12,7 +12,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install Droppy est un serveur de stockage de fichiers auto-hébergé avec une interface Web et des capacités pour éditer des fichiers et afficher des médias directement dans le navigateur. -**Version incluse :** 12.0.1 +**Version incluse :** 12.1.0 ## Captures d'écran diff --git a/conf/app.src b/conf/app.src index 78ae3a0..0e454c6 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/silverwind/droppy/archive/12.0.1.tar.gz -SOURCE_SUM=0491b84b3e82b51d48285ad45eba10314ae68817bd2e4b1bb12e505977188e02 +SOURCE_URL=https://github.com/silverwind/droppy/archive/12.1.0.tar.gz +SOURCE_SUM=0213a637bdd57f84860b018316623d17c47b50e96eb4d3325a697911f2ce4eca SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/conf/nginx.conf b/conf/nginx.conf index e68d709..d8f3bee 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -21,6 +21,8 @@ location ^~ __PATH__/ { proxy_connect_timeout 7200; proxy_read_timeout 7200; proxy_send_timeout 7200; + client_body_timeout 7200; + client_header_timeout 7200; client_max_body_size 0; # Include SSOWAT user panel. diff --git a/manifest.json b/manifest.json index be66f46..dd7f8cb 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Self-hosted file storage server", "fr": "Serveur de stockage de fichiers auto-hébergé" }, - "version": "12.0.1~ynh1", + "version": "12.1.0~ynh1", "url": "https://github.com/silverwind/droppy", "license": "BSD-2-Clause", "maintainer": { diff --git a/scripts/_common.sh b/scripts/_common.sh index ac79128..7912aa4 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,7 +4,7 @@ # COMMON VARIABLES #================================================= -nodejs_version=12 +nodejs_version=14 #================================================= # PERSONAL HELPERS