Hello!
On Fri, Nov 15, 2013 at 2:21 PM, Chris Whitten wrote:
> I have:
>
> proxy_read_timeout 30;
> proxy_connect_timeout 10;
> proxy_send_timeout 15;
>
> defined in the html context of my nginx configuration.
Do you mean the "http" context here? There is no html {} block to my knowledge.
> I have multiple
> proxy_pass directives that go to different servers in the server and
> location contexts. will my proxy timeout settings affect ALL proxy_pass
> directives no matter which location block it is defined in?
The directives in your http {} block will be inherited automatically
by blocks inside it (unless you override the setting explicitly in the
blocks of the inner scope).
Regards,
-agentzh