From bb45d2171fa39dee94638c194b73346e4e9a906f Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 17 Jan 2022 00:10:19 +0100 Subject: [PATCH 1/4] Remove unecessary stuff in README.md --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 87873c9..386d834 100644 --- a/README.md +++ b/README.md @@ -26,23 +26,6 @@ of your custom Web application inside. **Shipped version:** 1.0 -## Configuration - -## Documentation - - * YunoHost documentation: https://yunohost.org/en/app_my_webapp - -## YunoHost specific features - -#### Multi-users support - -#### Supported architectures - -* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/my_webapp.svg)](https://ci-apps.yunohost.org/ci/apps/my_webapp/) -* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/my_webapp.svg)](https://ci-apps-arm.yunohost.org/ci/apps/my_webapp/) - -## Limitations - ## Additional information #### SFTP port @@ -53,6 +36,7 @@ then you should use this port to update your website with SFTP. ## Links + * YunoHost documentation for this app: https://yunohost.org/en/app_my_webapp * Report a bug: https://github.com/YunoHost-Apps/my_webapp_ynh/issues * YunoHost website: https://yunohost.org/ From 5b963e27fd7d4f806f7bd17fa9204263025f418c Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 17 Jan 2022 00:11:18 +0100 Subject: [PATCH 2/4] Remove unecessary stuff in README.md --- README_fr.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README_fr.md b/README_fr.md index 6c385c1..07cd068 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,23 +19,6 @@ La version de PHP-FPM peut aussi être choisie, parmi 7.3, 7.4, et 8.0. **Version incluse :** 1.0 -## Configuration - -## Documentation - - * Documentation YunoHost : https://yunohost.org/fr/app_my_webapp - -## Caractéristiques spécifiques YunoHost - -#### Support multi-utilisateurs - -#### Architectures supportées - -* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/my_webapp.svg)](https://ci-apps.yunohost.org/ci/apps/my_webapp/) -* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/my_webapp.svg)](https://ci-apps-arm.yunohost.org/ci/apps/my_webapp/) - -## Limitations - ## Informations additionnelles #### Port SFTP @@ -46,6 +29,7 @@ alors vous devriez utiliser ce port pour mettre à jour votre site Web avec SFTP ## Liens + * Documentation YunoHost pour cette app : https://yunohost.org/fr/app_my_webapp * Signaler un bug : https://github.com/YunoHost-Apps/my_webapp_ynh/issues * Site web YunoHost : https://yunohost.org/ From 61b3fd2e0991a1cbca014e88313f310784aa03fd Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 17 Jan 2022 15:43:38 +0100 Subject: [PATCH 3/4] emergency patch the backup script when there is no php version --- scripts/backup | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/backup b/scripts/backup index 02c3e3b..2e90618 100644 --- a/scripts/backup +++ b/scripts/backup @@ -51,7 +51,10 @@ ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf" # BACKUP THE PHP-FPM CONFIGURATION #================================================= -ynh_backup --src_path="/etc/php/${phpversion}/fpm/pool.d/$app.conf" +if [ $phpversion != "none" ] +then + ynh_backup --src_path="/etc/php/${phpversion}/fpm/pool.d/$app.conf" +fi #================================================= # BACKUP THE MYSQL DATABASE From f1fb0c9c08ef099e4c43f0a031502f19390f8d1d Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 17 Jan 2022 15:43:51 +0100 Subject: [PATCH 4/4] Bump --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index c190dde..76d2065 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Custom Web app with SFTP access to serve static (HTML, CSS, JS) and PHP files", "fr": "Application Web personnalisée avec accès SFTP pour servir des fichiers statiques (HTML, CSS, JS) et PHP" }, - "version": "1.0~ynh6", + "version": "1.0~ynh7", "url": "https://github.com/YunoHost-Apps/my_webapp_ynh", "license": "GPL-3.0-only", "maintainer": {