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

62 lines
1.6 KiB
Text
Raw Normal View History

2013-12-24 13:37:55 +01:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
# Source app helpers
source ./_common
source /usr/share/yunohost/helpers
2013-12-24 13:37:55 +01:00
# Retrieve arguments
domain=$YNH_APP_ARG_DOMAIN
path=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
2013-12-24 13:37:55 +01:00
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
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|| ynh_die "Path not available: ${domain}${path}"
2013-12-24 13:37:55 +01:00
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
# Create system user dedicace for this app
ynh_system_user_create $app
# Files owned by user specific can just read
2013-12-24 13:37:55 +01:00
sudo find $final_path -type f | xargs sudo chmod 644
sudo find $final_path -type d | xargs sudo chmod 755
sudo chown -R $app: $final_path
2013-12-24 13:37:55 +01:00
# except for data and tmp subdir, where www-data must have write permissions
sudo mkdir -p $final_path/{data,tmp}
sudo chown -R $app: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
2017-04-16 23:57:23 +02:00
# Create the php-fpm pool config
ynh_fpm_config
2017-04-16 23:57:23 +02:00
# Set ssowat config
if [ "$is_public" = "No" ];
2013-12-24 13:37:55 +01:00
then
ynh_app_setting_delete $app skipped_uris
2013-12-24 13:37:55 +01:00
fi
sudo systemctl reload nginx
sudo yunohost app ssowatconf