minor typos

This commit is contained in:
Éric Gaspar 2024-09-03 13:55:06 +02:00 committed by Félix Piédallu
parent cfe872b50e
commit f7ea228df8
5 changed files with 8 additions and 8 deletions

View file

@ -39,7 +39,7 @@ ynh_backup "$data_dir"
# Backup the PHP-FPM configuration
ynh_backup "/etc/php/$php_version/fpm/pool.d/$app.conf"
# Backup the nginx configuration
# Backup the NGINX configuration
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
# Backup the systemd service unit

View file

@ -24,7 +24,7 @@ source /usr/share/yunohost/helpers
### ...
###
### $app is the app id (i.e. 'example' for first install,
### or 'example__2', '__3', ... for multi-instance installs)
### or 'example__2', '__3'... for multi-instance installs)
#=================================================
# INITIALIZE AND STORE SETTINGS

View file

@ -80,7 +80,7 @@ ynh_restore "/var/log/$app/"
#=================================================
ynh_script_progression "Reloading NGINX web server and $app's service..."
### Typically you only have either $app or php-fpm but not both at the same time...
### Typically you only have either $app or PHP-FPM but not both at the same time...
ynh_systemctl --service="$app" --action="start"
ynh_systemctl --service="php$php_version-fpm" --action=reload