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

correction

This commit is contained in:
ewilly 2016-03-25 09:32:16 +01:00
parent 857b56feb3
commit be9c5b0c75

View file

@ -46,6 +46,14 @@ sudo find $final_path -type d | xargs sudo chmod 755
# Configure config file # Configure config file
sudo sed -i "s@'en'@'$default_lang'@g" $final_path/config.php sudo sed -i "s@'en'@'$default_lang'@g" $final_path/config.php
# Create data folders
sudo mkdir -p $final_path/private
sudo mkdir -p $final_path/uploads
sudo mkdir -p $final_path/thumbs
sudo chown -R www-data: $final_path/private
sudo chown -R www-data: $final_path/uploads
sudo chown -R www-data: $final_path/thumbs
# Configure nginx settings # Configure nginx settings
folder_path=${path%/} folder_path=${path%/}
sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf sudo sed -i "s@YNH_EXAMPLE_PATH@$path@g" ../conf/nginx.conf
@ -68,7 +76,7 @@ sudo sed -i "1 i\127.0.0.1 $domain #bozon_hosts" /etc/hosts
#make request to install app #make request to install app
#get the html page #get the html page
#curl_path=$([ "$path" == "/" ] || echo $path) curl_path=$([ "$path" == "/" ] || echo $path)
#curl -kL -o install_page.html https://$domain$curl_path/index.php?p=admin >/dev/null 2>&1 #curl -kL -o install_page.html https://$domain$curl_path/index.php?p=admin >/dev/null 2>&1