I have an nginx reverse proxy location setup like so:
location /192.168.0.10 {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header X-Forwarded-Host $server_name;
    proxy_cookie_path /phpmyadmin/ /;
    proxy_redirect off;
    proxy_pass    http://192.168.0.10/;
}
location /192.168.0.11 {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header X-Forwarded-Host $server_name;
    proxy_cookie_path /phpmyadmin/ /;
    proxy_redirect off;
    proxy_pass    http://192.168.0.11/;
}
location /192.168.0.12 {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header X-Forwarded-Host $server_name;
    proxy_cookie_path /phpmyadmin/ /;
    proxy_redirect off;
    proxy_pass    http://192.168.0.12/;
}
location /192.168.0.13 {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header X-Forwarded-Host $server_name;
    proxy_cookie_path /phpmyadmin/ /;
    proxy_redirect off;
    proxy_pass    http://192.168.0.13/;
}
location /192.168.0.14 {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header X-Forwarded-Host $server_name;
    proxy_cookie_path /phpmyadmin/ /;
    proxy_redirect off;
    proxy_pass    http://192.168.0.14/;
}
location /192.168.0.15 {..... 
This structure repeats about 96 times so that we can have a reverse proxy to each one. Is there a way to simplify it so that there is only one structure and that the IP in the location's path magically just appears in the proxy_pass directive? Because this is becoming a pain to manage as we add and remove servers.
 
    