mirror of
https://github.com/YunoHost-Apps/my_webapp_ynh.git
synced 2024-09-03 19:46:26 +02:00
commit
cc5b5ace5d
4 changed files with 7 additions and 36 deletions
18
README.md
18
README.md
|
@ -26,23 +26,6 @@ of your custom Web application inside.
|
||||||
|
|
||||||
**Shipped version:** 1.0
|
**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 - [](https://ci-apps.yunohost.org/ci/apps/my_webapp/)
|
|
||||||
* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/my_webapp/)
|
|
||||||
|
|
||||||
## Limitations
|
|
||||||
|
|
||||||
## Additional information
|
## Additional information
|
||||||
|
|
||||||
#### SFTP port
|
#### SFTP port
|
||||||
|
@ -53,6 +36,7 @@ then you should use this port to update your website with SFTP.
|
||||||
|
|
||||||
## Links
|
## 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
|
* Report a bug: https://github.com/YunoHost-Apps/my_webapp_ynh/issues
|
||||||
* YunoHost website: https://yunohost.org/
|
* YunoHost website: https://yunohost.org/
|
||||||
|
|
||||||
|
|
18
README_fr.md
18
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
|
**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 - [](https://ci-apps.yunohost.org/ci/apps/my_webapp/)
|
|
||||||
* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/my_webapp/)
|
|
||||||
|
|
||||||
## Limitations
|
|
||||||
|
|
||||||
## Informations additionnelles
|
## Informations additionnelles
|
||||||
|
|
||||||
#### Port SFTP
|
#### Port SFTP
|
||||||
|
@ -46,6 +29,7 @@ alors vous devriez utiliser ce port pour mettre à jour votre site Web avec SFTP
|
||||||
|
|
||||||
## Liens
|
## 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
|
* Signaler un bug : https://github.com/YunoHost-Apps/my_webapp_ynh/issues
|
||||||
* Site web YunoHost : https://yunohost.org/
|
* Site web YunoHost : https://yunohost.org/
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Custom Web app with SFTP access to serve static (HTML, CSS, JS) and PHP files",
|
"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"
|
"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",
|
"url": "https://github.com/YunoHost-Apps/my_webapp_ynh",
|
||||||
"license": "GPL-3.0-only",
|
"license": "GPL-3.0-only",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
|
|
|
@ -51,7 +51,10 @@ ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
||||||
# BACKUP THE PHP-FPM CONFIGURATION
|
# 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
|
# BACKUP THE MYSQL DATABASE
|
||||||
|
|
Loading…
Add table
Reference in a new issue