php - nginx 监听了两个端口80和81,但是我找不到81的配置!!

查看:251
本文介绍了php - nginx 监听了两个端口80和81,但是我找不到81的配置!!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

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这个字

解决方案

当然需要自己写啊!

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

这篇关于php - nginx 监听了两个端口80和81,但是我找不到81的配置!!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆