2015-11-11 18:03:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-15 00:18:41 +01:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
2017-03-08 00:50:23 +01:00
|
|
|
source .fonctions # Loads the generic functions usually used in the script
|
|
|
|
source /usr/share/yunohost/helpers # Source YunoHost helpers
|
2017-03-02 15:44:54 +01:00
|
|
|
|
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
path=$(ynh_app_setting_get "$app" path)
|
|
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
|
|
|
language=$(ynh_app_setting_get "$app" language)
|
|
|
|
|
2017-03-08 00:50:23 +01:00
|
|
|
CHECK_PATH # Checks and corrects the syntax of the path.
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2018-09-03 21:35:41 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_install_app_dependencies php-zip
|
|
|
|
|
2017-03-02 15:44:54 +01:00
|
|
|
final_path=/var/www/$app
|
|
|
|
|
2017-03-26 15:06:37 +02:00
|
|
|
# Get source
|
2017-03-26 01:02:03 +01:00
|
|
|
SETUP_SOURCE
|
2017-03-23 14:44:29 +01:00
|
|
|
|
2015-11-11 18:03:16 +01:00
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
2017-03-15 16:24:41 +01:00
|
|
|
sudo sed -i "s@__PATHTOCHANGE__@$path@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sudo sed -i "s@__FINALPATH__@$final_path@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sudo sed -i "s@__NAMETOCHANGE__@$app@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2017-03-15 16:24:41 +01:00
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
|
|
|
sudo sed -i "s@#--PRIVATE--@@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
fi
|
|
|
|
|
2017-03-26 15:06:37 +02:00
|
|
|
# Create the php-fpm pool config
|
|
|
|
POOL_FPM
|
|
|
|
|
2017-04-01 17:08:00 +02:00
|
|
|
sudo chown -R www-data: "${final_path}"
|
|
|
|
|
2017-03-15 16:24:41 +01:00
|
|
|
# Setup SSOwat
|
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2015-11-11 18:03:16 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Reload Nginx
|
2017-03-26 16:29:13 +02:00
|
|
|
sudo systemctl reload php5-fpm
|
|
|
|
sudo systemctl reload nginx
|
|
|
|
sudo yunohost app ssowatconf
|