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
|
|
|
|
path=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-04-06 17:46:57 +02:00
|
|
|
|
|
|
|
# Check domain/path availability
|
2017-04-30 15:45:50 +02:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path}"
|
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
|
|
|
if [[ ! "$path" == "/" ]]; then
|
|
|
|
path=${path%/}
|
2015-04-06 17:46:57 +02:00
|
|
|
fi
|
|
|
|
|
2017-04-30 15:45:50 +02:00
|
|
|
# Copy files to the right place
|
|
|
|
final_path=/var/www/$app
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
extract_source $final_path
|
|
|
|
|
|
|
|
# Create system user dedicace for this app
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
2015-04-06 17:46:57 +02:00
|
|
|
# Copy files to the right place with the right permissions
|
|
|
|
final_path=/var/www/$app
|
|
|
|
sudo mkdir -p $final_path
|
2017-04-30 15:45:50 +02:00
|
|
|
sudo chown -R $app: $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
|
|
|
|
|
|
|
|
# Set ssowat config
|
|
|
|
if [[ $is_public -eq 0 ]]; then
|
|
|
|
ynh_app_setting_delete $app skipped_uris
|
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
|