标签:支持 nginx 地址 .com 好处 -- desc cat may
当客户端访问www.itmayiedu.com,监听端口号为80直接跳转到真实ip服务器地址 127.0.0.1:8081
server {
listen 80;
server_name 8081.itmayiedu.com;
location / {
proxy_pass http://127.0.0.1:8081; //在这里配置
index index.html index.htm;
}
}
标签:支持 nginx 地址 .com 好处 -- desc cat may
原文地址:https://www.cnblogs.com/frankltf/p/10372462.html