2

基本上,我试图将我的域指向不同的 IP。

在检查website/domain时,似乎 DNS 已传播到新的 IP 地址。访问该站点时,我看到“欢迎使用 nginx!” 信息。如果我直接加载 IP 209.105.244.90,它会显示网站。我已经等了超过 24 小时才能进行更改 - 但没有运气。

我错过了什么?任何帮助,将不胜感激。

以下是 nginx 配置文件:

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

server {
  listen 80;
  server_name 209.105.244.90;
  root /home/firemonk/myapps/web/public;   # <--- be sure to point to 'public'!
  passenger_enabled on;

}

4

1 回答 1

3

你的第一个服务器块有

server_name localhost;

你的第二个服务器块有

server_name 209.105.244.90;

换句话说,您的任何服务器块都没有设置为监听您的域名 -> 将您的域名添加到相关的服务器块

于 2012-10-20T08:33:54.570 回答