如何查nginx服务器ip
发布时间: 2024-10-11 18:58:57
1. nginx怎么配置IP和域名都能访问
一个nginx服务器只能有一个虚拟主机允许IP访问
只要在server_name最后面添加一个default,就可以在其他nginx没有定义的域名下,使用当前server解析(例如,其他server都没有定义ip地址作为server_name则用IP访问会被打到default主机上)
2. nginx 怎么打印代理服务器的ip地址
server {
listen 8000;
server_name testhost alias another.alias;
location / {
root "D:\site";
index index.html index.htm;
}
}
热点内容