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
|
2017-05-16 20:44:51 +02:00
|
|
|
path=$(ynh_normalize_url_path $YNH_APP_ARG_PATH)
|
2017-04-16 17:22:30 +02:00
|
|
|
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-05-16 20:44:51 +02:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app"
|
2015-05-23 15:04:16 +02:00
|
|
|
|
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 19:49:45 +02:00
|
|
|
sudo chown -R root: $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
|
2017-05-20 19:40:39 +02:00
|
|
|
ynh_nginx_config
|
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-05-20 19:43:07 +02:00
|
|
|
<<<<<<< HEAD
|
2017-05-20 19:40:39 +02:00
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
|
|
|
if [[ $is_public -eq 1 ]]; then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2017-05-20 19:43:07 +02:00
|
|
|
=======
|
2017-04-16 17:22:30 +02:00
|
|
|
# Set ssowat config
|
2017-05-16 20:44:51 +02:00
|
|
|
ynh_app_setting_set $app is_public "$is_public"
|
|
|
|
if [ "$is_public" = "Yes" ];
|
2013-12-24 13:37:55 +01:00
|
|
|
then
|
2017-05-16 20:44:51 +02:00
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
2017-05-20 19:43:07 +02:00
|
|
|
>>>>>>> ed68227b97ca7aa0f4e0d0f9450df936e867585f
|
2013-12-24 13:37:55 +01:00
|
|
|
fi
|
|
|
|
|
2017-04-16 17:22:30 +02:00
|
|
|
sudo systemctl reload nginx
|
2017-05-16 20:44:51 +02:00
|
|
|
sudo yunohost app ssowatconf
|