php - nginx 监听了两个端口80和81,但是我找不到81的配置!!
阿神
阿神 2017-04-11 10:29:27
[PHP讨论组]

nginx.conf里头

http {

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;

}

conf.d是空的。。。

sites-enabled

然后default文件里头

server {

listen 80 default_server;
listen [::]:80 default_server;
root /data/www/;

# Add index.php to the list if you are using PHP
index index.html index.htm index.php;

server_name _;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ =404;
}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
    include snippets/fastcgi-php.conf;
#
#    # With php5-cgi alone:
    fastcgi_pass 127.0.0.1:9000;
#    # With php5-fpm:
#    fastcgi_pass unix:/var/run/php5-fpm.sock;
}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#    deny all;
#}

}
我都没看到81这个字

阿神
阿神

闭关修行中......

全部回复(5)
PHP中文网

当然需要自己写啊!

server {
listen 81;
server_name ;
root /home/www;
access_log /var/log/nginx;
}
阿神

81端口的进程明明是node……

黄舟

默认是80的。81的就是自己修改的。

可以用浏览器打开81端口看下是什么内容。

阿神

site-enable目录下面放的是一个link
site-available目录下面放的是一个真实的配置文件,你看一下

大家讲道理

81端口明明是nodej在占用

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号