Browse Source
Update to nextcloud 12 (closes #36 and #38) (#37)
Update to nextcloud 12 (closes #36 and #38) (#37)
* Update to nextcloud 12 * Add correct rights * Fix temp directory rights on upgrade * Add server tuning * Update php-fpm.conf * Add new helper for fpm config * [fix] Opcache * [fix] nginx SAMEORIGINpull/28/merge
committed by
JimboJoe
10 changed files with 118 additions and 10 deletions
-
4README.md
-
2conf/nginx.conf
-
7conf/php-fpm.ini
-
2manifest.json
-
83scripts/_common.sh
-
3scripts/install
-
1scripts/upgrade
-
18scripts/upgrade.d/upgrade.11.sh
-
4scripts/upgrade.d/upgrade.generic.sh
-
4scripts/upgrade.d/upgrade.last.sh
@ -0,0 +1,7 @@ |
|||
opcache.enable=1 |
|||
opcache.enable_cli=1 |
|||
opcache.interned_strings_buffer=8 |
|||
opcache.max_accelerated_files=10000 |
|||
opcache.memory_consumption=128 |
|||
opcache.save_comments=1 |
|||
opcache.revalidate_freq=1 |
|||
@ -0,0 +1,18 @@ |
|||
#!/bin/bash |
|||
|
|||
# Version cible de la mise à jour de Nextcloud |
|||
VERSION="12.0.0" |
|||
|
|||
# Nextcloud tarball checksum |
|||
NEXTCLOUD_SOURCE_SHA256="1b9d9cf05e657cd564a552b418fbf42d669ca51e0fd1f1f118fe44cbf93a243f" |
|||
|
|||
# Load common variables and helpers |
|||
source ./_common.sh |
|||
|
|||
# Source app helpers |
|||
source /usr/share/yunohost/helpers |
|||
|
|||
# Load common upgrade function |
|||
source ./upgrade.d/upgrade.generic.sh |
|||
|
|||
COMMON_UPGRADE # Met à jour Nextcloud vers la version suivante |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue