nginx conf server_name
时间: 2023-11-17 14:47:05 浏览: 146
server name
`server_name` 是 Nginx 配置文件中用来指定虚拟主机的域名或 IP 地址的指令。它可以在 server 块中用来指定一个虚拟主机的名称或 IP 地址,也可以在 http 块中用来指定默认服务器的名称或 IP 地址。
例如,以下是一个示例配置:
```
server {
listen 80;
server_name example.com www.example.com;
location / {
...
}
}
```
在上面的示例中,Nginx 会将所有访问 example.com 或 www.example.com 的请求都发送到这个服务器块中配置的 location 块中处理。
阅读全文