mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
55 lines
1.7 KiB
Bash
55 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
source ./_common.sh
|
|
|
|
# Retrieve arguments
|
|
domain=$(sudo yunohost app setting jappix domain)
|
|
path=$(sudo yunohost app setting jappix path)
|
|
name=$(sudo yunohost app setting jappix name)
|
|
language=$(sudo yunohost app setting jappix language)
|
|
|
|
if [[ "$name" = "" ]];
|
|
then
|
|
name="YunoJappix"
|
|
fi
|
|
if [[ "$language" = "" ]];
|
|
then
|
|
language="en"
|
|
fi
|
|
|
|
# Remove trailing "/" for next commands
|
|
path=${path%/}
|
|
|
|
# Retrieve sources
|
|
wget -nv -q -O jappix.tar.gz https://github.com/jappix/jappix/archive/${VERSION}.tar.gz
|
|
|
|
# Copy files to the right place
|
|
final_path=/var/www/jappix
|
|
sudo mkdir -p $final_path
|
|
sudo tar -C $final_path -xf jappix.tar.gz --strip-components 1
|
|
sudo mkdir -p $final_path/store/conf
|
|
sudo cp ../conf/*.xml $final_path/store/conf/
|
|
|
|
# Set permissions to jappix directory
|
|
sudo chown -R www-data: $final_path
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
sudo sed -i "s@PATHTOCHANGE2@$path@g" ../conf/nginx.conf
|
|
|
|
if [ -z "$path" ]; then
|
|
path="/"
|
|
fi
|
|
|
|
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/jappix.conf
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/store/conf/main.xml
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/store/conf/hosts.xml
|
|
sudo sed -i "s@DOMAINTOCHANGE@$domain@g" $final_path/store/conf/main.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 Nginx and regenerate SSOwat conf
|
|
sudo service nginx reload
|
|
sudo yunohost app ssowatconf
|