我想同时使用 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
NGINX 和 Apache 在默认设置的 Ubuntu 中共享相同的基本 docroot -
/var/www/html
.两者都在包级别配置为不替换默认 docroot 的 index.htm(l) 文件(如果它已经存在)。
因此,如果先安装 Apache,NGINX 包不会替换默认的 docroot 的索引页,如果先安装 NGINX,Apache 也不会替换 NGINX 登陆页。
检查您的配置 - 并使用不同的文档根目录。Apache 的配置行是
DocumentRoot
,而 NGINX 的配置行是root
. 两者都具有指向将提供文件和页面的位置的目录路径参数。但是在没有配置更改的默认安装中,它们使用相同的 docroot。