安装 Nginx

安装 Nginx

我想在同一台服务器上同时运行 Apache2 和 Nginx,我该怎么做?我正在运行 Ubuntu 20.04 服务器,我正在为我的服务器安装 iredmail,我想使用它并同时运行我的网站。

答案1

只需查看本教程,其中解释了有关设置和配置 ngxinx 和 apache2 的问题 https://websiteforstudents.com/setup-nginx-reverse-proxy-apache2-ubuntu-17-04-17-10/

这是ubuntu的旧版本,但是我认为应该没有区别。

这里是它的安装脚本:

安装 Nginx

sudo apt-get update && apt-get install nginx

sudo systemctl start nginx.service
sudo systemctl enable nginx.service

安装 Apach2

sudo apt-get install apache2

IredMail 的 Nginx 配置

https://www.nginx.com/resources/wiki/start/topics/recipes/iredmail/

就像@hextex 在评论中提到的那样,我们需要知道您的 Web 服务器的端口,以便为 nginx 正确配置它。

Nginx 配置多个网页

https://webdock.io/en/docs/how-guides/how-configure-nginx-to-serve-multiple-websites-single-vps

我希望这有帮助。

相关内容