From 283cb73735f5edf4dd45571be9889d06b9f6c00b Mon Sep 17 00:00:00 2001 From: frju365 Date: Wed, 1 Feb 2017 19:54:48 +0100 Subject: [PATCH] Create install --- install | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 install diff --git a/install b/install new file mode 100644 index 0000000..065194d --- /dev/null +++ b/install @@ -0,0 +1,52 @@ +#!/bin/bash + +source ./_common +set -eu + +# Retrieve arguments +domain=$1 +path=$2 +is_public=$3 + +app=$YNH_APP_INSTANCE_NAME + +# Source app helpers +source /usr/share/yunohost/helpers + +# Check domain/path availability +sudo yunohost app checkurl "${domain}${path}" -a "$app" \ + || ynh_die "Path not available: ${domain}${path}" + +# Remove trailing "/" for next commands +if [[ ! "$path" == "/" ]]; then + path=${path%/} +fi + +# Source YunoHost helpers +source /usr/share/yunohost/helpers + +# Copy files to the right place +final_path=/var/www/$app +sudo mkdir -p $final_path +extract_source $final_path + +# Files owned by root, www-data can just read +sudo chown www-data:www-data $final_path -R +sudo chmod 755 $final_path -R + +# Modify Nginx configuration file and copy it to Nginx conf directory +sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf +sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf +nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf +sudo cp ../conf/nginx.conf $nginxconf +sudo chown root: $nginxconf +sudo chmod 600 $nginxconf + +ynh_app_setting_set "$app" is_public "$is_public" +if [ "$is_public" = "Yes" ]; +then + ynh_app_setting_set "$app" unprotected_uris "/" +fi + +sudo service nginx reload +sudo yunohost app ssowatconf