2014-08-18 18:37:19 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Retrieve settings
|
|
|
|
|
domain=$(sudo yunohost app setting hextris domain)
|
|
|
|
|
path=$(sudo yunohost app setting hextris path)
|
2014-08-18 18:41:14 +02:00
|
|
|
|
is_public=$(sudo yunohost app setting hextris is_public)
|
2014-08-18 18:37:19 +02:00
|
|
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
|
|
|
|
path=${path%/}
|
|
|
|
|
|
|
|
|
|
# Copy files to the right place
|
|
|
|
|
final_path=/var/www/hextris
|
|
|
|
|
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/hextris.conf
|
|
|
|
|
sudo cp ../conf/nginx.conf $nginxconf
|
|
|
|
|
sudo chown root: $nginxconf
|
|
|
|
|
sudo chmod 600 $nginxconf
|
|
|
|
|
|
2014-08-18 18:41:14 +02:00
|
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
|
then
|
2014-10-30 13:09:27 +01:00
|
|
|
|
sudo yunohost app setting hextris skipped_uris -d
|
|
|
|
|
sudo yunohost app setting hextris unprotected_uris -v "/"
|
2014-08-18 18:41:14 +02:00
|
|
|
|
fi
|
|
|
|
|
|
2014-08-18 18:37:19 +02:00
|
|
|
|
# Reload web server & sso
|
|
|
|
|
sudo service nginx reload
|
|
|
|
|
sudo yunohost app ssowatconf
|