この構成では:
server {
listen 8080;
location / {
if ($http_cookie ~* "mycookie") {
proxy_set_header X-Request $request;
proxy_pass http://localhost:8081;
}
}
}
nginxサービスをリロードすると、このエラーが発生します。
Reloading nginx configuration: nginx: [emerg] "proxy_set_header" directive is not allowed here in /etc/nginx/conf.d/check_cookie.conf:5
nginx: configuration file /etc/nginx/nginx.conf test failed
この構成は正常に動作しますが、私が望むことは行いません:
server {
listen 8080;
location / {
proxy_set_header X-Request $request;
if ($http_cookie ~* "mycookie") {
proxy_pass http://localhost:8081;
}
}
}
if句内にproxy_set_headerディレクティブを配置できないのはなぜですか?
クロスポストしないでください。stackoverflow.com/questions/16500594/...
—
ceejayoz
これについて話し合うためにチャットを開きました。:私たちは、そこの議論を続行することができますchat.stackexchange.com/rooms/8745/nginx
—
Neuquino