1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zerobin_ynh.git synced 2024-09-03 18:06:01 +02:00
zerobin_ynh/scripts/install

55 lines
1.4 KiB
Text
Raw Normal View History

2013-12-24 13:37:55 +01:00
#!/bin/bash
source /usr/share/yunohost/helpers
source ./_common
2013-12-24 13:37:55 +01:00
# Retrieve arguments
domain=$1
path=$2
is_public=$3
2016-08-24 19:43:33 +02:00
app=$YNH_APP_INSTANCE_NAME
2013-12-24 13:37:55 +01:00
# Check domain/path availability
2016-08-24 19:43:33 +02:00
sudo yunohost app checkurl $domain$path -a $app
2013-12-24 13:37:55 +01:00
if [[ ! $? -eq 0 ]]; then
exit 1
fi
2015-05-23 15:04:16 +02:00
# Remove trailing "/" for next commands
if [[ ! "$path" == "/" ]]; then
path=${path%/}
fi
2013-12-24 13:37:55 +01:00
# Copy files to the right place
2016-08-24 19:43:33 +02:00
final_path=/var/www/$app
2013-12-24 13:37:55 +01:00
sudo mkdir -p $final_path
extract_source $final_path
2013-12-24 13:37:55 +01:00
# Files owned by root, www-data can just read
sudo find $final_path -type f | xargs sudo chmod 644
sudo find $final_path -type d | xargs sudo chmod 755
sudo chown -R root: $final_path
# except for data and tmp subdir, where www-data must have write permissions
sudo mkdir -p $final_path/{data,tmp}
2016-08-24 19:41:07 +02:00
sudo chown -R www-data:root $final_path/{data,tmp}
2013-12-24 13:37:55 +01:00
sudo chmod 700 $final_path/{data,tmp}
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
2014-03-11 15:08:09 +01:00
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
2016-08-24 19:43:33 +02:00
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
2014-03-11 15:02:21 +01:00
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
2013-12-24 13:37:55 +01:00
2016-08-24 19:43:33 +02:00
sudo yunohost app setting $app is_public -v "$is_public"
2014-07-22 21:26:46 +02:00
if [ "$is_public" = "Yes" ];
2013-12-24 13:37:55 +01:00
then
2016-08-24 19:43:33 +02:00
sudo yunohost app setting $app unprotected_uris -v "/"
2013-12-24 13:37:55 +01:00
fi
sudo service nginx reload
sudo yunohost app ssowatconf