2017-02-13 22:47:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ./_common
|
|
|
|
source .fonctions
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
|
|
|
is_public=$3
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
script_dir=$PWD
|
|
|
|
|
|
|
|
# Vérifie que les variables ne sont pas vides.
|
|
|
|
CHECK_VAR "$app" "app name not set"
|
|
|
|
CHECK_VAR "$script_dir" "script_dir not set"
|
|
|
|
|
|
|
|
CHECK_PATH # Vérifie et corrige la syntaxe du path.
|
|
|
|
CHECK_DOMAINPATH # Vérifie la disponibilité du path et du domaine.
|
|
|
|
|
|
|
|
CHECK_FINALPATH # Vérifie que le dossier de destination n'est pas déjà utilisé.
|
|
|
|
|
|
|
|
|
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Copy files to the right place
|
|
|
|
final_path=/var/www/$app
|
2017-02-16 23:34:23 +01:00
|
|
|
sudo mkdir -p /var/www/$app
|
2017-02-16 23:26:05 +01:00
|
|
|
extract_source
|
2017-02-13 22:47:30 +01:00
|
|
|
|
|
|
|
# Files owned by root, www-data can just read
|
|
|
|
sudo chown www-data:www-data $final_path -R
|
|
|
|
sudo chmod 775 $final_path -R
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
|
|
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
|
|
|
|
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
|
|
|
|
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sudo cp ../conf/nginx.conf $nginxconf
|
|
|
|
sudo chown root: $nginxconf
|
|
|
|
sudo chmod 600 $nginxconf
|
|
|
|
|
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
fi
|
|
|
|
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|