1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/garradin_ynh.git synced 2024-09-03 18:36:17 +02:00
garradin_ynh/scripts/upgrade

50 lines
1.3 KiB
Text
Raw Normal View History

2017-01-28 23:41:18 +01:00
#!/bin/bash
source ./_common
2017-01-29 16:37:21 +01:00
set -eu
2017-01-28 23:41:18 +01:00
app=$YNH_APP_INSTANCE_NAME
2017-01-29 16:29:29 +01:00
domain=$(sudo ynh_app_setting_set $app domain)
path=$(sudo ynh_app_setting_set $app path)
is_public=$(sudo ynh_app_setting_set $app is_public)
2017-01-28 23:41:18 +01:00
2017-01-29 16:29:29 +01:00
# Source app helpers
source /usr/share/yunohost/helpers
2017-01-28 23:41:18 +01:00
# Remove trailing "/" for next commands
if [[ ! "$path" == "/" ]]; then
path=${path%/}
fi
# Init final_path, if ever it got deleted somehow
final_path=/var/www/$app
sudo mkdir -p $final_path
# Clean up
# This will remove old paste data (otherwise we would need to lower down security)
sudo rm -rf $final_path/*
# Copy files to the right place
extract_source $final_path
# Files owned by root, www-data can just read
2017-01-28 23:44:22 +01:00
sudo chown www-data:www-data $final_path -R
sudo chmod 755 $final_path -R
2017-01-28 23:41:18 +01:00
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
if [ "$is_public" = "Yes" ];
then
2017-01-29 16:29:29 +01:00
sudo ynh_app_setting_set $app skipped_uris -d
sudo ynh_app_setting_set $app unprotected_uris "/"
2017-01-28 23:41:18 +01:00
fi
sudo service nginx reload
sudo yunohost app ssowatconf