0

我最近安装了vestacp,但我不想使用 ngix 我只想使用 Apache

我必须重新安装所有吗?

如何从我的 vestacp 中删除 ngix?

4

1 回答 1

3

是的,您可以在不重新安装的情况下删除 nginx。

  1. 停止 nginx

    服务 nginx 停止

  2. 移除包裹

// 在 Debian/Ubuntu 中

apt-get remove nginx

// 在 CentOS 中

yum remove nginx
  1. 更改vesta配置

    cd /usr/local/vesta/conf

    sed -i "/PROXY_*/d" vesta.conf

    sed -i "s/8080/80/" vesta.conf

    sed -i "s/8443/443/" vesta.conf

  2. 更改 httpd 配置

// 在 Debian/Ubuntu 中

cd /etc/apache2/conf.d

// 在 CentOS 中

cd /etc/httpd/conf.d

接下来这样做:

sed -i "s/8080/80/" *.conf

sed -i "s/8443/443/" *.conf
  1. 重建虚拟主机配置

    对于 $(v-list-sys-users plain) 中的用户;做 v-rebuild-web-domains $user; 完毕

您可以在以下网址找到该说明:http: //vestacp.com/docs/#how-to-remove-nginx-rhel-centos

http://vestacp.com/docs/#how-to-remove-nginx-debian-ubuntu

于 2017-10-04T11:18:57.357 回答