Heim > Fragen und Antworten > Hauptteil
Meine Nginx-Reverse-Proxy-Konfiguration ist wie folgt:
location ^~ /a(pi|uth) {
proxy_pass http://localhost:3000;
# Proxy Settings
proxy_set_header HOST $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
...
}
Ich hoffe, dass alle Anfragen /api/*
和/auth/*
an Port 3000 gesendet werden, aber der Abgleich scheint meiner Meinung nach kein Problem mit dem regulären Ausdruck zu sein
javascript
/a(pi|uth)/.test('api') // true
Ich kann es direkt zuordnenlocation ^~ /api
, aber es funktioniert nicht, wenn ich reguläre Ausdrücke verwende. Ich weiß nicht, was los ist