Jeremy MANSON 93a05133b0 first commit
Adding scripts Primitives "install" " delete" "upgrade" and nginx conf
2016-03-07 10:19:14 +01:00

15 lines
364 B
Bash

#!/bin/bash
# Retrieve arguments
domain=$(sudo yunohost app setting shinken domain)
path=$(sudo yunohost app setting shinken path)
# Remove trailing "/" for next commands
path=${path%/}
# Configure Nginx and reload
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/shinken.conf
sudo service nginx reload