| 1234567891011121314151617181920212223242526272829303132333435 |
- #!/bin/bash
- # Include vesta.conf
- source /usr/local/vesta/conf/vesta.conf
- # Check if old scheme is in use
- check_oldip=$(grep "^Listen" /etc/$WEB_SYSTEM/conf.d/vesta.conf)
- if [ -z "$check_oldip" ]; then
- exit
- fi
- # Remove old ip definitions from vesta.conf
- sed -i "/^Listen/d" /etc/$WEB_SYSTEM/conf.d/vesta.conf
- sed -i "/^NameVirtualHost/d" /etc/$WEB_SYSTEM/conf.d/vesta.conf
- sed -i "/^$/d" /etc/$WEB_SYSTEM/conf.d/vesta.conf
- # Create new ip configs
- for ip in $(ls /usr/local/vesta/data/ips); do
- web_conf="/etc/$WEB_SYSTEM/conf.d/$ip.conf"
- if [ "$WEB_SYSTEM" = 'httpd' ] || [ "$WEB_SYSTEM" = 'apache2' ]; then
- echo "NameVirtualHost $ip:$WEB_PORT" > $web_conf
- echo "Listen $ip:$WEB_PORT" >> $web_conf
- fi
- if [ "$WEB_SSL" = 'mod_ssl' ]; then
- echo "NameVirtualHost $ip:$WEB_SSL_PORT" >> $web_conf
- echo "Listen $ip:$WEB_SSL_PORT" >> $web_conf
- fi
- done
- # Restart web server
- /usr/local/vesta/bin/v-restart-web
- exit
|