#!/bin/bash set -eu app=$YNH_APP_INSTANCE_NAME # Source YunoHost helpers source /usr/share/yunohost/helpers final_path=$(ynh_app_setting_get $app final_path) finalnginxconf=$(ynh_app_setting_get $app finalnginxconf) finalphpconf=$(ynh_app_setting_get $app finalphpconf) # Backup sources & data # Note: the last argument is where to save this path, see the restore script. ynh_backup "$final_path" "sources" # Copy NGINX configuration ynh_backup "$finalnginxconf" "nginx.conf" ### PHP (remove if not used) ### # If a dedicated php-fpm process is used: # # Copy PHP-FPM pool configuration ynh_backup "$finalphpconf" "php-fpm.conf"