📜  如果 proxy_pass 关闭,则 nginx 停止 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:16.888000             🧑  作者: Mango

代码示例1
server {
    listen 9000;
    server_name example1.example.com;
    location / {
        set $target something.service.lab.mu;
        proxy_pass http://$target;
    }
}