mirror of
https://github.com/YunoHost-Apps/lufi_ynh.git
synced 2024-09-03 19:36:28 +02:00
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
# Exit on command errors and treat unset variables as an error
|
||
|
set -eu
|
||
|
|
||
|
source .fonctions # Loads the generic functions usually used in the script
|
||
|
source /usr/share/yunohost/helpers # Source YunoHost helpers
|
||
|
|
||
|
# 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)
|
||
|
is_public=$(ynh_app_setting_get $app is_public)
|
||
|
|
||
|
CHECK_PATH # Checks and corrects the syntax of the path.
|
||
|
|
||
|
final_path=/var/www/$app
|
||
|
|
||
|
# Get source
|
||
|
SETUP_SOURCE
|
||
|
|
||
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
||
|
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
|
||
|
|
||
|
if [ "$is_public" = "Yes" ];
|
||
|
then
|
||
|
sudo sed -i "s@#--PRIVATE--@@g" /etc/nginx/conf.d/$domain.d/$app.conf
|
||
|
fi
|
||
|
|
||
|
# Create the php-fpm pool config
|
||
|
POOL_FPM
|
||
|
|
||
|
# Setup SSOwat
|
||
|
ynh_app_setting_set "$app" is_public "$is_public"
|
||
|
if [ "$is_public" = "Yes" ];
|
||
|
then
|
||
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
||
|
fi
|
||
|
|
||
|
# Reload Nginx
|
||
|
sudo systemctl reload php5-fpm
|
||
|
sudo systemctl reload nginx
|
||
|
sudo yunohost app ssowatconf
|