2013-12-11 21:23:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-08 23:34:00 +01:00
|
|
|
set -eu
|
|
|
|
source .fonctions
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-13 22:29:15 +02:00
|
|
|
|
2017-03-08 23:34:00 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-05-28 14:58:23 +02:00
|
|
|
|
2017-03-08 23:34:00 +01:00
|
|
|
# Récupère les infos de l'application.
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path=$(ynh_app_setting_get $app path)
|
|
|
|
name=$(ynh_app_setting_get "$app" name)
|
|
|
|
language=$(ynh_app_setting_get "$app" language)
|
2016-05-13 22:29:15 +02:00
|
|
|
|
|
|
|
# Set default values
|
|
|
|
name="${name:-YunoJappix}"
|
|
|
|
language="${language:-en}"
|
2013-12-11 21:23:28 +01:00
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
2017-03-08 23:34:00 +01:00
|
|
|
CHECK_PATH
|
2015-05-28 14:58:23 +02:00
|
|
|
|
2017-03-08 23:34:00 +01:00
|
|
|
#=================================================
|
2013-12-11 21:23:28 +01:00
|
|
|
# Copy files to the right place
|
2017-03-08 23:34:00 +01:00
|
|
|
#=================================================
|
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
final_path="/var/www/${app}"
|
2017-03-08 23:34:00 +01:00
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
SETUP_SOURCE # Télécharge la source, décompresse et copie dans $final_path
|
2016-05-13 22:29:15 +02:00
|
|
|
sudo mkdir -p "${final_path}/store/conf"
|
|
|
|
sudo cp ../conf/*.xml "${final_path}/store/conf/"
|
2013-12-11 21:23:28 +01:00
|
|
|
|
|
|
|
# Set permissions to jappix directory
|
2016-05-13 22:29:15 +02:00
|
|
|
sudo chown -R www-data: "$final_path"
|
|
|
|
|
|
|
|
# Set and copy NGINX configuraion
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@${path}@g" ../conf/nginx.conf
|
|
|
|
sudo sed -i "s@ALIASTOCHANGE@${final_path}/@g" ../conf/nginx.conf
|
|
|
|
sudo cp ../conf/nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
|
|
|
|
|
|
# Set Jappix configuration
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@${path}@g" "${final_path}/store/conf/hosts.xml"
|
|
|
|
sudo sed -i "s@CHANGELANG@${language}@g" "${final_path}/store/conf/main.xml"
|
|
|
|
sudo sed -i "s@CHANGENAME@${name}@g" "${final_path}/store/conf/main.xml"
|
|
|
|
sudo sed -i "s@DOMAINTOCHANGE@${domain}@g" "${final_path}/store/conf/hosts.xml"
|
|
|
|
|
|
|
|
# Reload services
|
2013-12-11 21:23:28 +01:00
|
|
|
sudo service nginx reload
|