mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
30 lines
748 B
Bash
30 lines
748 B
Bash
#!/bin/bash
|
||
|
||
# Retrieve settings
|
||
app=linuxdash
|
||
domain=$(sudo yunohost app setting $app domain)
|
||
path=$(sudo yunohost app setting $app path)
|
||
|
||
# Remove trailing "/" for next commands
|
||
path=${path%/}
|
||
|
||
# Copy files to the right place
|
||
final_path=/var/www/$app
|
||
sudo mkdir -p $final_path
|
||
sudo cp -a ../sources/* $final_path
|
||
|
||
# Set permissions
|
||
sudo chown -R www-data: $final_path
|
||
|
||
# Modify Nginx configuration file and copy it to Nginx conf directory
|
||
sed -i "s@YNH_WWW_PATH@$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
|
||
|
||
# Restart Linux-dash service
|
||
sudo supervisorctl restart $app
|
||
|
||
# Reload web server & sso
|
||
sudo service nginx reload
|