mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
18 lines
402 B
Bash
18 lines
402 B
Bash
#!/bin/bash
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
set -e
|
|
|
|
# Source YNH helpers
|
|
. /usr/share/yunohost/helpers
|
|
|
|
app="jappix"
|
|
|
|
# Retrieve app settings
|
|
domain=$(sudo yunohost app setting "$app" domain)
|
|
|
|
# Save sources & data
|
|
ynh_backup "/var/www/${app}" "sources"
|
|
|
|
# Copy NGINX configuration
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|