#!/bin/bash # Retrieve settings domain=$(sudo yunohost app setting 243 domain) path=$(sudo yunohost app setting 243 path) is_public=$(sudo yunohost app setting 243 is_public) # Remove trailing "/" for next commands path=${path%/} # Copy files to the right place final_path=/var/www/243 sudo mkdir -p $final_path sudo cp -a ../sources/* $final_path # Set permissions sudo chown -R www-data: $final_path # 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/243.conf sudo cp ../conf/nginx.conf $nginxconf sudo chown root: $nginxconf sudo chmod 600 $nginxconf if [ "$is_public" = "Yes" ]; then sudo yunohost app setting 243 skipped_uris -v "/" fi # Reload web server & sso sudo service nginx reload sudo yunohost app ssowatconf