“nginx rewrite proxy_pass” Code-Antworten

nginx rewrite proxy_pass

location  /foo {
  rewrite /foo/(.*) /$1  break;
  proxy_pass         http://localhost:3200;
  proxy_redirect     off;
  proxy_set_header   Host $host;
}
GutoTrosla

nginx rewrite proxy_pass

location /foo {
    rewrite ^/foo(/.*)$ /some/path$1 break;
    proxy_pass http://external-server-IP:8080;
}
patrick204nqh

Ähnliche Antworten wie “nginx rewrite proxy_pass”

Fragen ähnlich wie “nginx rewrite proxy_pass”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen