diff --git a/scripts/upgrade b/scripts/upgrade new file mode 100644 index 0000000..7fce5b7 --- /dev/null +++ b/scripts/upgrade @@ -0,0 +1,44 @@ +#!/bin/bash + +set -eu +# Source app helpers +source /usr/share/yunohost/helpers +source ./_common + +app=$YNH_APP_INSTANCE_NAME + +domain=$(ynh_app_setting_get $app domain) +path=$(ynh_app_setting_get $app path) +is_public=$(ynh_app_setting_get $app is_public) + +# Remove trailing "/" for next commands +if [[ ! "$path" == "/" ]]; then + path=${path%/} +fi + +# Copy files to the right place +final_path=/var/www/$app +sudo mkdir -p $final_path +sudo rm -rf $final_path/* +extract_source $final_path + +# Files owned by root, www-data can just read +sudo chown www-data:www-data $final_path -R +sudo chmod 775 $final_path -R + +# 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 + +ynh_app_setting_set "$app" is_public "$is_public" +if [ "$is_public" = "Yes" ]; +then + ynh_app_setting_set "$app" unprotected_uris "/" +fi + +sudo service nginx reload +sudo yunohost app ssowatconf