Nginx配置默认页面
时间: 2024-02-02 07:37:49 浏览: 75
nginx 的默认配置文件
可以在nginx.conf文件中加入以下代码来配置默认页面:
```
server {
listen 80;
server_name example.com;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
}
}
```
其中,`server_name`指定了服务器的域名,`root`指定了默认页面的目录,`location`指定了默认页面的文件名。在这个例子中,当用户访问`example.com`时,会自动显示`/usr/share/nginx/html/index.html`页面。
阅读全文