Answers for "nginx stop if proxy_pass is down"

1

nginx stop if proxy_pass is down

server {
    listen 9000;
    server_name example1.example.com;
    location / {
        set $target something.service.lab.mu;
        proxy_pass http://$target;
    }
}
Posted by: Guest on June-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language