2014-10-20 16:55:53 +00:00
|
|
|
|
#!/bin/bash
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
|
set -eu
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
2016-03-18 16:31:44 +00:00
|
|
|
|
# See comments in install script
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# Source YunoHost helpers
|
2016-06-14 12:11:00 +00:00
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-18 20:31:45 +00:00
|
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2017-01-25 23:08:25 +00:00
|
|
|
|
path_url=$(ynh_app_setting_get "$app" path_url)
|
2016-05-18 20:31:45 +00:00
|
|
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
|
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
|
|
|
|
language=$(ynh_app_setting_get "$app" language)
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
2017-01-25 23:08:25 +00:00
|
|
|
|
path_url=${path_url%/}
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
|
|
|
|
# Copy source files
|
2016-06-13 20:25:00 +00:00
|
|
|
|
src_path=/var/www/$app
|
|
|
|
|
sudo mkdir -p $src_path
|
|
|
|
|
sudo cp -a ../sources/. $src_path
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
|
# you may need to make some file and/or directory writeable by www-data (nginx user)
|
2016-06-13 20:25:00 +00:00
|
|
|
|
sudo chown -R root: $src_path
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
2016-06-13 20:25:00 +00:00
|
|
|
|
nginx_conf=../conf/nginx.conf
|
2017-01-25 23:08:25 +00:00
|
|
|
|
sed -i "s@YNH_WWW_PATH@$path_url@g" $nginx_conf
|
2016-06-13 20:25:00 +00:00
|
|
|
|
sed -i "s@YNH_WWW_ALIAS@$src_path/@g" $nginx_conf
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# If a dedicated php-fpm process is used:
|
2015-10-10 19:28:09 +00:00
|
|
|
|
#
|
2016-06-13 20:25:00 +00:00
|
|
|
|
# sed -i "s@YNH_WWW_APP@$app@g" $nginx_conf
|
|
|
|
|
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### PHP (remove if not used) ###
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# If a dedicated php-fpm process is used:
|
|
|
|
|
# # Modify PHP-FPM pool configuration and copy it to the pool directory
|
|
|
|
|
# sed -i "s@YNH_WWW_APP@$app@g" ../conf/php-fpm.conf
|
2016-06-13 20:25:00 +00:00
|
|
|
|
# sed -i "s@YNH_WWW_ALIAS@$src_path/@g" ../conf/php-fpm.conf
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# finalphpconf=/etc/php5/fpm/pool.d/$app.conf
|
|
|
|
|
# sudo cp ../conf/php-fpm.conf $finalphpconf
|
|
|
|
|
# sudo chown root: $finalphpconf
|
|
|
|
|
# sudo chmod 644 $finalphpconf
|
2016-06-14 12:09:29 +00:00
|
|
|
|
# sudo service php5-fpm restart
|
|
|
|
|
### PHP end ###
|
2015-10-10 19:28:09 +00:00
|
|
|
|
|
2014-10-20 16:55:53 +00:00
|
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
2016-06-13 20:25:00 +00:00
|
|
|
|
if [[ $is_public -eq 1 ]]; then
|
2014-11-15 07:28:28 +00:00
|
|
|
|
# See install script
|
2016-05-18 20:31:45 +00:00
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2014-10-20 16:55:53 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2016-06-13 20:25:00 +00:00
|
|
|
|
# Reload nginx service
|
2014-10-20 16:55:53 +00:00
|
|
|
|
sudo service nginx reload
|