mirror of
https://github.com/YunoHost-Apps/grav_ynh.git
synced 2024-09-03 19:16:01 +02:00
23 lines
No EOL
616 B
Bash
23 lines
No EOL
616 B
Bash
#!/bin/bash
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
set -eu
|
|
|
|
# Get multi-instances specific variables
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
# Copy the app files
|
|
final_path="/var/www/${app}"
|
|
ynh_backup "$final_path" "sources" 1
|
|
|
|
# Copy the nginx conf files
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|
|
# Copy the php-fpm conf files
|
|
ynh_backup "/etc/php5/fpm/pool.d/${app}.conf" "php-fpm.conf"
|
|
ynh_backup "/etc/php5/fpm/conf.d/20-${app}.ini" "php-fpm.ini" |