2017-01-28 22:05:00 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
# Retrieve Sources
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-01-29 15:54:46 +01:00
|
|
|
set -eu
|
2017-01-28 22:05:00 +01:00
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
2017-01-28 22:05:00 +01:00
|
|
|
# Retrieve arguments
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-03-17 22:51:37 +01:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2017-01-28 22:05:00 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-02-12 11:08:59 +01:00
|
|
|
script_dir=$PWD
|
2017-02-12 01:13:46 +01:00
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
2017-02-12 11:08:59 +01:00
|
|
|
# Vérifie que les variables ne sont pas vides.
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-02-12 11:08:59 +01:00
|
|
|
CHECK_VAR "$app" "app name not set"
|
|
|
|
CHECK_VAR "$script_dir" "script_dir not set"
|
2017-02-11 20:26:05 +01:00
|
|
|
|
2017-02-12 11:08:59 +01:00
|
|
|
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é.
|
2017-02-11 19:50:47 +01:00
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_app_setting_set $app admin $admin
|
|
|
|
ynh_app_setting_set $app domain $domain
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
|
|
|
|
|
|
|
#=================================================
|
2017-01-28 23:11:24 +01:00
|
|
|
# Install dependency to convert tracks to a readable format for the browser
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
2017-01-28 23:11:24 +01:00
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -yy -qq install php5-sqlite
|
2017-01-29 16:06:11 +01:00
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
2017-01-28 22:05:00 +01:00
|
|
|
# Copy files to the right place
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-01-28 22:05:00 +01:00
|
|
|
final_path=/var/www/$app
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
extract_source $final_path
|
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
2017-01-28 22:05:00 +01:00
|
|
|
# Files owned by root, www-data can just read
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-01-28 22:05:00 +01:00
|
|
|
sudo chown www-data:www-data $final_path -R
|
|
|
|
sudo chmod 755 $final_path -R
|
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
2017-01-28 22:05:00 +01:00
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
|
2017-01-28 22:05:00 +01:00
|
|
|
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
|
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
# Set Public or private settings
|
|
|
|
#=================================================
|
|
|
|
|
2017-01-29 18:42:16 +01:00
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
2017-01-28 22:05:00 +01:00
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
2017-01-29 16:16:08 +01:00
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2017-01-28 22:05:00 +01:00
|
|
|
fi
|
|
|
|
|
2017-06-26 17:14:28 +02:00
|
|
|
#=================================================
|
|
|
|
# Reload Services
|
|
|
|
#=================================================
|
|
|
|
|
2017-01-28 22:05:00 +01:00
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|