how to set proxy value in route #5570
Unanswered
zhangshunbao
asked this question in
Q&A
Replies: 1 comment
-
Some of them cannot be set dynamically, If I am correct, the following items can be set on the route/upstream level:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In nginx, we can set proxy value in context http/server/location, like this:
proxy_cache off;
proxy_buffer_size 64k;
proxy_buffers 32 32k;
proxy_busy_buffers_size 128k;
fastcgi_buffer_size 256k;
fastcgi_buffers 32 256k;
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
how to set those value in apisix route?
Beta Was this translation helpful? Give feedback.
All reactions