Proxy_passバックエンド応答コードからの応答に基づいて、カスタム応答ヘッダーの異なる値を設定する必要があります。
私はさまざまな方法を試しましたが、それでもこれを行う方法がわかりません。
location /mypath {
#for 200,301,302,etc "good" responses from 127.0.0.1:8080 I need to set value 60
add_header X-MyCustomHeader 60;
proxy_set_header Host $Host;
proxy_set_header X-Forwarded-Host $Host;
proxy_set_header X-Forwarded-Server $Host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8080;
#for 404,403 responses from 127.0.0.1:8080 I need to set X-MyCustomHeader=5
#for 500 responses from 127.0.0.1:8080 I need to set X-MyCustomHeader=1
}
どんな助けでも大歓迎です。
私は次の解決策を考え出しました。それは以下を解決します:
既知の問題:
私の情報源:
location /mypath/ {
add_header X-MyCustomHeader 60;
include /etc/nginx/proxy_config.conf; #some proxy_pass headers
proxy_pass http://127.0.0.1:8080;
proxy_intercept_errors on;
error_page 500 502 503 504 /50x.html;
error_page 400 403 404 =404 /mypath/errors/404.html;
}
# custom 50x fallback page for /mypath/, server from the nginx itself
location /50x.html {
add_header X-MyCustomHeader 1;
root html;
}
# custom 40x fallback page for /mypath/, served from the backend - hack
location /mypath/errors/404.html {
add_header X-MyCustomHeader 5;
include /etc/nginx/proxy_config.conf; #some proxy_pass headers
proxy_pass http://127.0.0.1:8080;
proxy_intercept_errors off;
}
そして これ
このアプローチに問題/懸念はありますか?