页面仅在某些计算机上加载

Page loads only on certain computers

从现在开始,我将我的服务器仅用于教育目的和编码视频。现在我想尝试使用 nginx 和 apache 在上面托管一些网站(为我的朋友),但问题是,即使它成功加载到我的计算机和其他一些计算机上,我也看到该页面没有'加载,而不是只显示 "Welcome to nginx on debian" 页面。 我怎样才能让它每次都能正常工作?

/etc/nginx/sites-available/uterfleru.cz :

server {
  listen          80;

  root /var/uterfleru.cz;
  index index.html index.php index.htm;

  server_name uterfleru.cz;
}

DNS-A:

uterfleru.cz    64.188.46.67
www.uterfleru.cz    64.188.46.67 

64.188.46.67是我服务器的ipv4, http://uterfleru.cz/ 是网页。

server_name uterfleru.cz; 就是 uterfleru.cz 域名。要使此 server 块适用于 www 子域,您必须修改它 like that:

server_name www.uterfleru.cz uterfleru.cz;

要使其与任何子域一起使用,您必须将其更改为:

# synonym of *.uterfleru.cz uterfleru.cz;
server_name .uterfleru.cz;

要使此服务器块默认工作,您必须删除 /etc/nginx/sites-enabled/default.conf 文件并修改 listen 指令 like that:

listen 80 default;

Official documentation 拥有您需要的所有信息,它是我见过的最好的软件文档之一,我强烈建议您学习使用它。