#!/bin/bash # Source app helpers source /usr/share/yunohost/helpers source ./_common set -eu app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_set $app domain) path=$(ynh_app_setting_set $app path) is_public=$(ynh_app_setting_set $app is_public) # 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 # Files owned by root, www-data can just read sudo chown www-data:www-data $final_path -R sudo chmod 755 $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