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/ 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/ 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": { 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