Nginx CentOS 上的 .bit 域名

Nginx CentOS 上的 .bit 域名

目前,我正尝试在 Nginx 中添加 domain.bit 作为我的 server_name,虽然我已成功完成,但是,当将域转发到服务器 IP 或甚至 ping 域时,它无法调出服务器 IP。这是我当前的配置:

#
# The default server
#
server {
    listen       80;
    server_name domain.bit;


    location / {
        root   /usr/share/nginx/html;
        index index.php  index.html index.htm;
    }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           /usr/share/nginx/html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

我已经确定要重启 Nginx,但还是没有成功。防火墙也没有打开。当我使用我的另一个域名(.net)时,它运行正常。我还 100% 确定 .bit 域名正确指向服务器域名。

相关内容