1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/privatebin_ynh.git synced 2024-09-03 20:15:56 +02:00
privatebin_ynh/scripts/install

45 lines
1.2 KiB
Text
Raw Normal View History

2013-12-24 13:37:55 +01:00
#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
is_public=$3
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a zerobin
if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Copy files to the right place
final_path=/var/www/zerobin
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
# 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}
sudo chown www-data:root $final_path/{data,tmp}
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
2014-03-11 15:02:21 +01:00
nginxconf=/etc/nginx/conf.d/$domain.d/zerobin.conf
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
2013-12-24 13:37:55 +01:00
2014-07-22 21:26:46 +02:00
sudo yunohost app setting zerobin is_public -v "$is_public"
if [ "$is_public" = "Yes" ];
2013-12-24 13:37:55 +01:00
then
2014-07-22 21:26:46 +02:00
sudo yunohost app setting zerobin skipped_uris -v "/"
2013-12-24 13:37:55 +01:00
fi
sudo service nginx reload
sudo yunohost app ssowatconf