nginx 和 apache 端口号不同但​​总是显示 apache2 页面

nginx 和 apache 端口号不同但​​总是显示 apache2 页面

我想要同时使用 nginx 和 apache 服务器。因此我安装了 nginx 并遵循了所有步骤。我已将端口号 8000 设置为 nginx。

但是在这个端口上,apache 主页加载了。即使停止了 apache 服务器。我已经卸载了 apache 然后尝试。但仍然显示 apache 主页。我正在使用 bitnami XAMPP,启动 XAMPP 后,通常它会从仪表板启动,

本地主机/仪表板

但是现在,它显示的是 apache 主页。但 XAMPP 正在运行。我该如何解决它。

操作系统:Ubuntu 20.04

这是

sudo netstat -tulpn | grep :80 
tcp        0      0 0.0.0.0:8000            0.0.0.0:*               LISTEN      1851/nginx: master  
tcp6       0      0 :::8000                 :::*                    LISTEN      1851/nginx: master  
tcp6       0      0 :::80                   :::*                    LISTEN      6714/httpd          

systemctl status nginx
● nginx.service - A high performance web server and a reverse proxy server
     Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
     Active: active (running) since Sun 2020-07-19 02:41:23 +06; 42min ago
       Docs: man:nginx(8)
   Main PID: 1851 (nginx)
      Tasks: 9 (limit: 9385)
     Memory: 14.7M
     CGroup: /system.slice/nginx.service
             ├─1851 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
             ├─6381 nginx: worker process
             ├─6382 nginx: worker process
             ├─6383 nginx: worker process
             ├─6384 nginx: worker process
             ├─6385 nginx: worker process
             ├─6386 nginx: worker process
             ├─6387 nginx: worker process
             └─6388 nginx: worker process

Jul 19 02:41:15 dip05-hp-laptop-15-da0022tx systemd[1]: Starting A high performance web server>
Jul 19 02:41:23 dip05-hp-laptop-15-da0022tx systemd[1]: Started A high performance web server >
Jul 19 02:59:56 dip05-hp-laptop-15-da0022tx systemd[1]: Reloading A high performance web serve>
Jul 19 02:59:56 dip05-hp-laptop-15-da0022tx systemd[1]: Reloaded A high performance web server>
Jul 19 03:00:43 dip05-hp-laptop-15-da0022tx systemd[1]: Reloading A high performance web serve>
lines 1-23

答案1

NGINX 和 Apache 在 Ubuntu 的默认设置中共享相同的基本文档根目录/var/www/html

两者都在包级别配置为如果默认 docroot 的 index.htm(l) 文件已经存在,则不替换它

因此,如果先安装 Apache,NGINX 包将不会替换默认 docroot 的索引页,并且如果先安装 NGINX,Apache 将不会替换 NGINX 登陆页面。

检查您的配置 - 并使用不同的文档根目录。Apache 的配置行为DocumentRoot,而 NGINX 的配置行为root。两者都具有目录路径参数,用于指定文件和页面的提供位置。

但在没有配置更改的默认安装中,它们使用相同的文档根目录。

相关内容