server {
listen 9000;
server_name example1.example.com;
location / {
set $target http://something.service.lab.mu;
proxy_pass http://$target;
}
}
Nignx添加proxy_pass可能造成DNS解析超时的问题解决
原文:https://www.cnblogs.com/littlehb/p/9800976.html