1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/20euros_ynh.git synced 2024-09-03 18:05:53 +02:00
20euros_ynh/scripts/upgrade
2015-03-08 14:02:54 +00:00

34 lines
925 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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