2013-12-24 13:37:55 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-04-16 17:22:30 +02:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
2017-04-17 18:20:58 +02:00
|
|
|
# Source app helpers
|
2016-08-24 19:33:06 +02:00
|
|
|
source ./_common
|
2017-04-17 18:20:58 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-08-24 19:33:06 +02:00
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
# Retrieve arguments
|
2017-04-16 17:22:30 +02:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2016-08-24 19:43:33 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
# Check domain/path availability
|
2017-04-16 17:22:30 +02:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path}"
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2015-05-23 15:04:16 +02:00
|
|
|
# Remove trailing "/" for next commands
|
|
|
|
if [[ ! "$path" == "/" ]]; then
|
|
|
|
path=${path%/}
|
|
|
|
fi
|
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
# Copy files to the right place
|
2016-08-24 19:43:33 +02:00
|
|
|
final_path=/var/www/$app
|
2013-12-24 13:37:55 +01:00
|
|
|
sudo mkdir -p $final_path
|
2016-08-24 19:33:06 +02:00
|
|
|
extract_source $final_path
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2017-04-17 18:20:58 +02:00
|
|
|
# Create system user dedicace for this app
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
|
|
|
# Files owned by user specific can just read
|
2013-12-24 13:37:55 +01:00
|
|
|
sudo find $final_path -type f | xargs sudo chmod 644
|
|
|
|
sudo find $final_path -type d | xargs sudo chmod 755
|
2017-04-17 18:20:58 +02:00
|
|
|
sudo chown -R $app: $final_path
|
2013-12-24 13:37:55 +01:00
|
|
|
|
|
|
|
# except for data and tmp subdir, where www-data must have write permissions
|
|
|
|
sudo mkdir -p $final_path/{data,tmp}
|
2017-04-17 18:20:58 +02:00
|
|
|
sudo chown -R $app:root $final_path/{data,tmp}
|
2013-12-24 13:37:55 +01:00
|
|
|
sudo chmod 700 $final_path/{data,tmp}
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
|
|
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
|
2014-03-11 15:08:09 +01:00
|
|
|
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
|
2016-08-24 19:43:33 +02:00
|
|
|
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
|
2014-03-11 15:02:21 +01:00
|
|
|
sudo cp ../conf/nginx.conf $nginxconf
|
|
|
|
sudo chown root: $nginxconf
|
|
|
|
sudo chmod 600 $nginxconf
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2017-04-16 23:57:23 +02:00
|
|
|
# Create the php-fpm pool config
|
2017-04-17 18:20:58 +02:00
|
|
|
ynh_fpm_config
|
2017-04-16 23:57:23 +02:00
|
|
|
|
2017-04-16 17:22:30 +02:00
|
|
|
# Set ssowat config
|
|
|
|
if [ "$is_public" = "No" ];
|
2013-12-24 13:37:55 +01:00
|
|
|
then
|
2017-04-16 17:22:30 +02:00
|
|
|
ynh_app_setting_delete $app skipped_uris
|
2013-12-24 13:37:55 +01:00
|
|
|
fi
|
|
|
|
|
2017-04-16 17:22:30 +02:00
|
|
|
sudo systemctl reload nginx
|
|
|
|
sudo yunohost app ssowatconf
|