nginx配置访问根目录静态文件
时间: 2023-10-29 11:57:47 浏览: 160
docker配置nginx静态文件服务.docx
你可以通过以下配置让 Nginx 访问根目录中的静态文件:
```
server {
listen 80; server_name example.com;
root /path/to/root/directory;
location / {
try_files $uri $uri/ =404;
}
}
```
在这个配置中,你需要将 `example.com` 替换为你的域名,`/path/to/root/directory` 替换为你的根目录的实际路径。
这个配置中的 `location /` 指令告诉 Nginx 对于任何请求,都会首先尝试直接访问对应的文件。如果文件不存在,则会返回 404 错误。你也可以根据需要进行更复杂的配置,比如添加缓存等。
阅读全文