.bit域名在Nginx CentOS上

目前我试图添加domain.bit作为我的server_name在Nginx中,我已经成功完成,但是,当转发域到服务器的IP甚至ping域,它无法启动服务器的IP。 这是我目前的conf:

# # 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域指向正确的服务器域。