1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00

fixed path error

This commit is contained in:
matlink 2014-11-13 19:34:55 +01:00 committed by Moul
parent 424ffa6b24
commit cf392a5c96

View file

@ -7,6 +7,7 @@ domain=$1
path=$2
admin=$3
is_public=$4
password=$5
# Check domain/path availability
@ -33,22 +34,30 @@ sudo mkdir -p $final_path
#copy files to final folder and set permissions
sudo cp -R ../src/* $final_path/
sudo chown www-data:www-data -R $final_path
sudo chmod 750 -R $final_path
#configure nginx settings
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
sudo sed -i "s@YNH_EXAMPLE_ALIAS@$final_path@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# If app is public, add url to SSOWat conf as skipped_uris
if [ "$is_public" = "Yes" ];
then
#temporal set public acessible
sudo yunohost app setting $app skipped_uris -v "/"
#make request to install app
#token=
curl -k -X POST --data "default_lang=fr&timezone=Greenland&install=Installer&name=$admin&login=$admin&pwd=$password&pwd2=$password&token=$token" https://$domain/$path/install.php
sudo chmod 750 -R $final_path
# If app is private, remove url to SSOWat conf from skipped_uris
if [ "$is_public" = "No" ];
then
sudo yunohost app setting wordpress skipped_uris -d
fi
#adding admin to the allowed users
sudo yunohost app addaccess $app -u $admin
sudo rm -f $final_path/install.php
# Restart services
sudo service nginx reload
sudo yunohost app ssowatconf