2014-11-12 22:42:09 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
app=pluxml
|
|
|
|
|
|
|
|
#retrieve arguments
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
path=$(sudo yunohost app setting $app path)
|
|
|
|
admin=$(sudo yunohost app setting $app admin)
|
|
|
|
is_public=$(sudo yunohost app setting $app is_public)
|
|
|
|
|
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
|
|
|
path=${path%/}
|
|
|
|
|
|
|
|
# Copy source files
|
|
|
|
final_path=/var/www/$app
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
sudo cp -a ../sources/* $final_path
|
2014-11-17 16:09:14 +01:00
|
|
|
sudo find $final_path -type f -name ".htaccess" | xargs sudo rm
|
2014-11-12 22:42:09 +01:00
|
|
|
|
2014-11-17 14:14:56 +01:00
|
|
|
sudo chown -R root: $final_path
|
|
|
|
sudo chown -R www-data: $final_path/data
|
|
|
|
sudo find $final_path -type f | xargs sudo chmod 644
|
|
|
|
sudo find $final_path -type d | xargs sudo chmod 755
|
|
|
|
|
|
|
|
|
2014-11-12 22:42:09 +01:00
|
|
|
#configure nginx settings
|
|
|
|
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
|
|
|
|
sudo sed -i "s@YNH_EXAMPLE_ALIAS@$final_path@g" ../conf/nginx.conf
|
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
2014-11-17 14:04:17 +01:00
|
|
|
sudo yunohost app setting $app unprotected_uris -v "/"
|
2014-11-12 22:42:09 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Restart services
|
|
|
|
sudo service nginx reload
|
2014-11-17 14:04:17 +01:00
|
|
|
sudo yunohost app ssowatconf
|