test_apps/full_domain_app_ynh/scripts/install

27 lines
646 B
Text

set -eux
# Source app helpers
source /usr/share/yunohost/helpers
# Retrieve arguments
app=$YNH_APP_INSTANCE_NAME
domain=$YNH_APP_ARG_DOMAIN
path="/"
# Check domain/path availability
ynh_webpath_register $app $domain $path
# Add config for nginx
sed -i "s@FOLDER@$app/@g" ../conf/nginx.conf
cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# Make directory for app web data
mkdir /var/www/$app
cp ../conf/index.html /var/www/$app
# Set the app as public
ynh_permission_update --permission="main" --add="visitors"
#yunohost app setting $app unprotected_uris -v "/"
# Reload Nginx and regenerate SSOwat conf
systemctl reload nginx