From 4b855a80f38c25c47a060642ec928bc1b8c0ef72 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 20 May 2022 21:24:18 +0000 Subject: [PATCH 1/3] Auto-update README --- README.md | 15 --------------- README_fr.md | 15 --------------- 2 files changed, 30 deletions(-) diff --git a/README.md b/README.md index a7b28c1..08c9872 100644 --- a/README.md +++ b/README.md @@ -28,21 +28,6 @@ Cypht is an application built entirely of plugins, or as we call them, module se ![](./doc/screenshots/cypht_shot1.png) -## Disclaimers / important information - -* Any known limitations, constrains or stuff not working, such as (but not limited to): - * requiring a full dedicated domain ? - * architectures not supported ? - * not-working single-sign on or LDAP integration ? - * the app requires an important amount of RAM / disk / .. to install or to work properly - * etc... - -* Other infos that people should be aware of, such as: - * any specific step to perform after installing (such as manually finishing the install, specific admin credentials, ...) - * how to configure / administrate the application if it ain't obvious - * upgrade process / specificities / things to be aware of ? - * security considerations ? - ## Documentation and resources * Official app website: https://cypht.org diff --git a/README_fr.md b/README_fr.md index 07d12cc..ed5dea4 100644 --- a/README_fr.md +++ b/README_fr.md @@ -24,21 +24,6 @@ Cypht is an application built entirely of plugins, or as we call them, module se ![](./doc/screenshots/cypht_shot1.png) -## Avertissements / informations importantes - -* Any known limitations, constrains or stuff not working, such as (but not limited to): - * requiring a full dedicated domain ? - * architectures not supported ? - * not-working single-sign on or LDAP integration ? - * the app requires an important amount of RAM / disk / .. to install or to work properly - * etc... - -* Other infos that people should be aware of, such as: - * any specific step to perform after installing (such as manually finishing the install, specific admin credentials, ...) - * how to configure / administrate the application if it ain't obvious - * upgrade process / specificities / things to be aware of ? - * security considerations ? - ## Documentations et ressources * Site officiel de l'appĀ : https://cypht.org From 5122389c1d11e6ad21eabb77f2d1fcccbf9291fe Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 20 May 2022 23:24:54 +0200 Subject: [PATCH 2/3] fix --- conf/nginx.conf | 2 +- conf/php-fpm.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 549b52a..b26a6dc 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -7,7 +7,7 @@ location __PATH__/ { index index.php; # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file - #client_max_body_size 50M; + client_max_body_size 50M; try_files $uri $uri/ index.php; location ~ [^/]\.php(/|$) { diff --git a/conf/php-fpm.conf b/conf/php-fpm.conf index ab1a471..b4c2372 100644 --- a/conf/php-fpm.conf +++ b/conf/php-fpm.conf @@ -419,8 +419,8 @@ chdir = __FINALPATH__ ;php_admin_value[memory_limit] = 32M ; Common values to change to increase file upload limit -; php_admin_value[upload_max_filesize] = 50M -; php_admin_value[post_max_size] = 50M +php_admin_value[upload_max_filesize] = 50M +php_admin_value[post_max_size] = 50M ; php_admin_flag[mail.add_x_header] = Off ; Other common parameters From a0d29889f1fa9d0c0c5f94dfe185bdfdab48a1a8 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 20 May 2022 23:26:13 +0200 Subject: [PATCH 3/3] Update install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 6873ccf..8acf17c 100755 --- a/scripts/install +++ b/scripts/install @@ -152,7 +152,7 @@ ynh_script_progression --message="Adding an admin..." --weight=3 #Generate the run-time configuration php$phpversion $final_path/scripts/config_gen.php -# create an account +# create an admin account php$phpversion $final_path/scripts/create_account.php $admin $password #=================================================