mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
15 lines
292 B
Bash
15 lines
292 B
Bash
#!/bin/bash
|
|
|
|
app=${!#}
|
|
|
|
# Retrieve arguments
|
|
backup_dir=$1
|
|
|
|
# Retrieve app settings
|
|
domain=$(sudo yunohost app setting "$app" domain)
|
|
|
|
# Save sources & data
|
|
sudo cp -a "/var/www/${app}" ./sources
|
|
|
|
# Copy NGINX configuration
|
|
sudo cp -a "/etc/nginx/conf.d/${domain}.d/${app}.conf" ./nginx.conf
|