#!/bin/bash # Exit on command errors and treat unset variables as an error set -eu # See comments in install script app=$YNH_APP_INSTANCE_NAME # Source YunoHost helpers source /usr/share/yunohost/helpers # Retrieve app settings domain=$(ynh_app_setting_get "$app" domain) path_url=$(ynh_app_setting_get "$app" path_url) is_public=$(ynh_app_setting_get "$app" is_public) # Remove trailing "/" for next commands path_url=${path_url%/} # Get files bash ../sources/get_sources.sh # Copy source files src_path=/var/www/$app sudo mkdir -p $src_path sudo rm -rf $src_path sudo cp -a ../sources/. $src_path # Files owned by root, www-data can just read sudo find $src_path -type f | xargs sudo chmod 644 sudo find $src_path -type d | xargs sudo chmod 755 sudo chown -R root: $src_path # Modify Nginx configuration file and copy it to Nginx conf directory nginx_conf=../conf/nginx.conf sed -i "s@YNH_WWW_PATH@$path_url@g" $nginx_conf sed -i "s@YNH_WWW_ALIAS@$src_path/@g" $nginx_conf sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf sudo chown root: /etc/nginx/conf.d/$domain.d/$app.conf sudo chmod 600 /etc/nginx/conf.d/$domain.d/$app.conf # If app is public, add url to SSOWat conf as skipped_uris if [[ $is_public -eq 1 ]]; then # See install script ynh_app_setting_set "$app" unprotected_uris "/" fi # Reload nginx service sudo service nginx reload sudo yunohost app ssowatconf