Ich versuche, einen standortbasierten Reverse-Proxy zu erstellen.
Meine Konfiguration funktioniert nicht wie erwartet.
/api
Es sollte jede an & gestellte Anfrage /auth
an das Backend und alles andere an den Frontend-Server weiterleiten.
server {
listen 80;
server_name 127.0.0.1 localhost;
# remove server version
server_tokens off;
try_files $uri $uri/ =404;
autoindex off;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
location ~ ^/(api|auth)/ {
proxy_pass http://127.0.0.1:8080/$1;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~ ^/(.*) {
proxy_pass http://127.0.0.1:3000/$1;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Die Anforderung an http://example.com/
scheint ordnungsgemäß zu funktionieren und bedient das Frontend, aber eine Anforderung an /api
oder /auth
gibt einen 404-Fehler vom Backend zurück.
Wenn ich mir die Anforderungs-URL ansehe, die das Backend empfängt, wird sie immer angezeigt /
und das ist nicht korrekt.
Was mache ich falsch?
BEARBEITEN: Ich habe es mit den folgenden Änderungen zum Laufen gebracht:
location ~ /(api|auth)/(.*)$ {
proxy_pass http://127.0.0.1:8080/$1/$2;
...
}
location ~ /(.*)$ {
proxy_pass http://127.0.0.1:3000/$1;
...
}