nginx 服务器指令不允许此处问题(简单代码)

nginx 服务器指令不允许此处问题(简单代码)

我意识到存在大量类似的问题,并且我已经查看了其中的大多数,我在虚拟机上构建它是为了“向自己证明我能做到”之类的事情。

在 Ubuntu 核心操作系统上运行 nginx

无论如何,这是代码:

server{
    root /usr/share/nginx/html;

    index index.html index.htm;

    server_name localhost;

    location / {
       try_files $uri $uri/ =404;
      }
 }

运行检查代码nginx.conf并返回没有错误。有什么想法吗?

答案1

如果那是您的全部nginx.conf,则server容器应该封闭在http容器内:

http {
  ...
  server {
    ...
  }
}

相关内容