Nginx + php 配置 用IP的方式能访问 域名的方式却不可以

 意华嘉泰6 发布于 2022-11-21 20:17

我Nginx 使用localhost:81或者127.0.0.1:81 可以访问 可用设置的域名访问不到这是为什么?
这是nginx.conf 的代码:

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       81;
        server_name www.test.com;
        root D:/src/web/runroot;
        error_page 404  /404.html;
        error_page   500 502 503 504  /50x.html; if ($remote_addr !~ "123.125.169.174") {
        #       rewrite ^ http://lavaradio.wix.com/lavaradio redirect;
        }
        rewrite ^/api/(.*?)\.json$    /index.php?route=api/$1&_of=json break;
        if (!-f $request_filename) {
            rewrite ^/(.*?)$    /index.php?route=$1 last;
        }       
        location /index.php {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
    }    
}

我的C:\Windows\System32\drivers\etc\hosts文件:

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an inpidual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on inpidual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
127.0.0.1 www.test.com
2 个回答
  • 访问 www.test.com:81

    2022-11-21 21:50 回答
  • 你hosts中是 127.0.0.1 www.test.com
    访问域名就到了 127.0.0.1:80 端口了,默认是80
    但是你的服务器端口开的是81

    2022-11-21 21:50 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有