2014-06-02 13:38:03 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Retrieve settings
|
|
|
|
|
domain=$(sudo yunohost app setting linuxdash domain)
|
|
|
|
|
path=$(sudo yunohost app setting linuxdash path)
|
|
|
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
|
|
|
|
path=${path%/}
|
|
|
|
|
|
|
|
|
|
# Copy files to the right place
|
|
|
|
|
final_path=/var/www/linuxdash
|
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
|
sudo cp -a ../sources/* $final_path
|
|
|
|
|
|
2014-06-02 14:22:42 +02:00
|
|
|
|
# Set permissions
|
|
|
|
|
sudo chown -R www-data: $final_path
|
2014-06-02 13:38:03 +02:00
|
|
|
|
|
|
|
|
|
# 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/linuxdash.conf
|
|
|
|
|
sudo cp ../conf/nginx.conf $nginxconf
|
|
|
|
|
sudo chown root: $nginxconf
|
|
|
|
|
sudo chmod 600 $nginxconf
|
|
|
|
|
|
|
|
|
|
# Reload web server & sso
|
|
|
|
|
sudo service nginx reload
|