diff --git a/conf/nginx.conf b/conf/nginx.conf index eb53526..52a64d5 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -16,7 +16,7 @@ location __PATH__/ { rewrite ^(.+)$ __PATH__/index.php?q=$1 last; } - client_max_body_size 30m; + client_max_body_size 50m; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock; diff --git a/doc/ADMIN.md b/doc/ADMIN.md index ac55464..61a8eeb 100644 --- a/doc/ADMIN.md +++ b/doc/ADMIN.md @@ -1,6 +1,6 @@ ## Configuration -Use the admin panel of your WordPress to configure this app. +Use WordPress admin panel to configure this app. ## YunoHost specific features diff --git a/doc/ADMIN_fr.md b/doc/ADMIN_fr.md index eb9bfed..35f24c8 100644 --- a/doc/ADMIN_fr.md +++ b/doc/ADMIN_fr.md @@ -1,6 +1,6 @@ ## Configuration -Utilisez le panneau d'administration de votre WordPress pour le configurer. +Utilisez le panneau d'administration de WordPress pour configurer l'application. ## Caractéristiques spécifiques YunoHost @@ -10,10 +10,6 @@ Utilisez le panneau d'administration de votre WordPress pour le configurer. * Mises à jour automatiques du cœur de WordPress, extentions et thèmes. * Capable de configurer une instance [multisite](https://codex.wordpress.org/Glossary#Multisite). -#### Support multi-utilisateur - -Supporté, avec LDAP et SSO. - ## Limitations * Le multisite n'est disponible que sur des sous-domaines. diff --git a/manifest.toml b/manifest.toml index 12730fa..c013092 100644 --- a/manifest.toml +++ b/manifest.toml @@ -16,7 +16,7 @@ admindoc = "https://codex.wordpress.org/" code = "https://core.trac.wordpress.org/browser" [integration] -yunohost = ">= 11.1.18" +yunohost = ">= 11.1.19" architectures = "all" multi_instance = true ldap = true diff --git a/scripts/_common.sh b/scripts/_common.sh index 0691acc..9f92349 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -11,10 +11,10 @@ ynh_maintenance_mode_ON () { # Load value of $path and $domain from the config if their not set if [ -z $path ]; then -#REMOVEME? path=$(ynh_app_setting_get $app path) + path=$(ynh_app_setting_get $app path) fi if [ -z $domain ]; then -#REMOVEME? domain=$(ynh_app_setting_get $app domain) + domain=$(ynh_app_setting_get $app domain) fi mkdir -p /var/www/html/ @@ -67,10 +67,10 @@ include conf.d/yunohost_panel.conf.inc; ynh_maintenance_mode_OFF () { # Load value of $path and $domain from the config if their not set if [ -z $path ]; then -#REMOVEME? path=$(ynh_app_setting_get $app path) + path=$(ynh_app_setting_get $app path) fi if [ -z $domain ]; then -#REMOVEME? domain=$(ynh_app_setting_get $app domain) + domain=$(ynh_app_setting_get $app domain) fi # Rewrite the nginx config file to redirect from ${path}_maintenance to the real url of the app.