소스 검색

disabled ipv6 support

Serghey Rodin 12 년 전
부모
커밋
14687f170a
2개의 변경된 파일3개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 1
      install/0.9.7/rhel/dovecot/dovecot.conf
  2. 2 4
      install/vst-install.sh

+ 1 - 1
install/0.9.7/rhel/dovecot/dovecot.conf

@@ -1,4 +1,4 @@
 protocols = imap pop3
-listen = *, ::
+listen = *
 base_dir = /var/run/dovecot/
 !include conf.d/*.conf

+ 2 - 4
install/vst-install.sh

@@ -494,12 +494,10 @@ if [ "$?" -ne 0 ]; then
 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
-rm -f /etc/nginx/conf.d/vesta_ip.conf
-touch /etc/nginx/conf.d/vesta_ip.conf
-rm -f /etc/nginx/conf.d/vesta_users.conf
-touch /etc/nginx/conf.d/vesta_users.conf
+touch /etc/nginx/conf.d/vesta.conf
 chkconfig nginx on
 service nginx start
 if [ "$?" -ne 0 ]; then