diff --git a/install/vst-install.sh b/install/vst-install.sh index 80032db0..202f25a7 100644 --- a/install/vst-install.sh +++ b/install/vst-install.sh @@ -458,6 +458,18 @@ sed -i 's/#allowsftp/allowsftp/' /etc/rssh.conf sed -i 's/#allowrsync/allowrsync/' /etc/rssh.conf chmod 755 /usr/bin/rssh +# Nginx configuration +rm -f /etc/nginx/conf.d/*.conf +wget $CHOST/$VERSION/nginx.conf -O /etc/nginx/nginx.conf +wget $CHOST/$VERSION/nginx-status.conf -O /etc/nginx/conf.d/status.conf +touch /etc/nginx/conf.d/vesta.conf +chkconfig nginx on +service nginx start +if [ "$?" -ne 0 ]; then + echo "Error: nginx start failed" + exit 1 +fi + # Apache configuration wget $CHOST/$VERSION/httpd.conf -O /etc/httpd/conf/httpd.conf wget $CHOST/$VERSION/httpd-status.conf -O /etc/httpd/conf.d/status.conf @@ -484,18 +496,6 @@ if [ "$?" -ne 0 ]; then exit 1 fi -# Nginx configuration -rm -f /etc/nginx/conf.d/*.conf -wget $CHOST/$VERSION/nginx.conf -O /etc/nginx/nginx.conf -wget $CHOST/$VERSION/nginx-status.conf -O /etc/nginx/conf.d/status.conf -touch /etc/nginx/conf.d/vesta.conf -chkconfig nginx on -service nginx start -if [ "$?" -ne 0 ]; then - echo "Error: nginx start failed" - exit 1 -fi - # Vsftpd configuration wget $CHOST/$VERSION/vsftpd.conf -O /etc/vsftpd/vsftpd.conf chkconfig vsftpd on