mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
version update
This commit is contained in:
parent
68a34e18b7
commit
a7321e9ab2
1 changed files with 34 additions and 0 deletions
|
@ -1,5 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Check version
|
||||
source /usr/local/vesta/conf/vesta.conf
|
||||
if [ "$VERSION" != '0.9.7' ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
# Rename web system service
|
||||
sed -i "s/apache/httpd/g" /usr/local/vesta/conf/vesta.conf
|
||||
|
||||
|
@ -106,5 +112,33 @@ for ip in $(ls /usr/local/vesta/data/ips); do
|
|||
> /etc/nginx/conf.d/$ip.conf
|
||||
done
|
||||
|
||||
# Remove broken symlink protection
|
||||
sed -i '/Symlinks protection/d' /etc/nginx/nginx.conf
|
||||
sed -i '/disable_symlinks.*/d' /etc/nginx/nginx.conf
|
||||
|
||||
# Add improved symlink protection
|
||||
if [ -e "$TPL/nginx" ]; then
|
||||
for tpl in $(ls $TPL/nginx |grep -v proxy_ip.tpl); do
|
||||
check_symlink=$(grep disable_symlinks $TPL/nginx/$tpl)
|
||||
if [ -z "$check_symlink" ]; then
|
||||
insert='disable_symlinks if_not_owner from=%docroot%;'
|
||||
sed -i "s/include %/$insert\n\ninclude %/" $TPL/nginx/$tpl
|
||||
triggered='yes'
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$triggered" = 'yes' ]; then
|
||||
# Rebuild web domains
|
||||
for user in $(ls $VESTA/data/users); do
|
||||
v-rebuild-web-domains $user no
|
||||
done
|
||||
|
||||
# Restart proxy
|
||||
v-restart-proxy
|
||||
fi
|
||||
fi
|
||||
|
||||
# Update version
|
||||
sed -i 's/0.9.7/0.9.8/' /usr/local/vesta/conf/vesta.conf
|
||||
|
||||
exit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue