2015-04-06 17:46:57 +02:00
|
|
|
|
#!/bin/bash
|
2017-04-30 15:45:50 +02:00
|
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
|
|
# Source app helpers
|
|
|
|
|
source ./_common
|
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-04-06 17:46:57 +02:00
|
|
|
|
|
|
|
|
|
# Retrieve arguments
|
2017-04-30 15:45:50 +02:00
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2017-05-30 15:28:39 +02:00
|
|
|
|
path=$(ynh_normalize_url_path $YNH_APP_ARG_PATH)
|
2017-04-30 15:45:50 +02:00
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-04-06 17:46:57 +02:00
|
|
|
|
|
2017-05-08 18:49:11 +02:00
|
|
|
|
CHECK_VAR "$app" "app name not set"
|
2017-04-30 15:45:50 +02:00
|
|
|
|
|
2017-05-08 18:49:11 +02:00
|
|
|
|
CHECK_PATH
|
|
|
|
|
|
|
|
|
|
CHECK_DOMAINPATH
|
|
|
|
|
|
|
|
|
|
CHECK_FINALPATH
|
|
|
|
|
|
2017-05-08 19:25:22 +02:00
|
|
|
|
# Save app settings
|
|
|
|
|
ynh_app_setting_set $app domain $domain
|
|
|
|
|
ynh_app_setting_set $app path $path
|
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
|
|
|
|
|
2017-05-08 18:49:11 +02:00
|
|
|
|
# Create system user dedicace for this app
|
|
|
|
|
ynh_system_user_create $app
|
2015-04-06 17:46:57 +02:00
|
|
|
|
|
2017-04-30 15:45:50 +02:00
|
|
|
|
# Copy files to the right place
|
|
|
|
|
final_path=/var/www/$app
|
|
|
|
|
sudo mkdir -p $final_path
|
2017-05-08 19:25:22 +02:00
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
2017-04-30 15:45:50 +02:00
|
|
|
|
|
2017-05-08 19:25:22 +02:00
|
|
|
|
# Get source application
|
|
|
|
|
extract_source $final_path
|
2015-04-06 17:46:57 +02:00
|
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
2017-04-30 15:45:50 +02:00
|
|
|
|
ynh_nginx_config
|
|
|
|
|
|
|
|
|
|
# Create the php-fpm pool config
|
|
|
|
|
ynh_fpm_config
|
|
|
|
|
|
2017-05-31 14:04:02 +02:00
|
|
|
|
# Change owner
|
|
|
|
|
sudo chown $app: -R $final_path
|
|
|
|
|
|
2017-04-30 15:45:50 +02:00
|
|
|
|
# Set ssowat config
|
2017-05-08 17:18:41 +02:00
|
|
|
|
if [ $is_public -eq 0 ]
|
|
|
|
|
then
|
|
|
|
|
ynh_app_setting_delete $app skipped_uris # Delete public access
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
|
then
|
|
|
|
|
ynh_app_setting_set $app skipped_uris "/" # Make app public if necessary
|
2015-04-06 17:46:57 +02:00
|
|
|
|
fi
|
|
|
|
|
|
2017-04-30 15:45:50 +02:00
|
|
|
|
sudo systemctl reload nginx
|
2015-04-06 17:46:57 +02:00
|
|
|
|
sudo yunohost app ssowatconf
|