欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2023-12-31 13:37:34
...

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

nginx.conf里头

http {

##
# Virtual Host Configs
##

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

}

conf.d是空的。。。

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

sites-enabled

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

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

相关标签: nginx php

上一篇:

下一篇: