diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2013-01-16 09:42:57 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2013-01-16 09:42:57 +0000 |
| commit | 5d143ca864012d338174f82513bf3b8533de98ab (patch) | |
| tree | 647513b22cf369085d12106ba96856373a6fda7b /src/http/ngx_http.h | |
| parent | 2aad7d7bb7b31677ce269765f701742141bffd90 (diff) | |
| download | nginx-5d143ca864012d338174f82513bf3b8533de98ab.tar.gz nginx-5d143ca864012d338174f82513bf3b8533de98ab.tar.bz2 | |
Fixed and improved the "*_bind" directives of proxying modules.
The "proxy_bind", "fastcgi_bind", "uwsgi_bind", "scgi_bind" and
"memcached_bind" directives are now inherited; inherited value
can be reset by the "off" parameter. Duplicate directives are
now detected. Parameter value can now contain variables.
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index f1d02bdd2..f974081ea 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -28,11 +28,11 @@ typedef u_char *(*ngx_http_log_handler_pt)(ngx_http_request_t *r, #include <ngx_http_variables.h> #include <ngx_http_request.h> +#include <ngx_http_script.h> #include <ngx_http_upstream.h> #include <ngx_http_upstream_round_robin.h> #include <ngx_http_config.h> #include <ngx_http_busy_lock.h> -#include <ngx_http_script.h> #include <ngx_http_core_module.h> #if (NGX_HTTP_CACHE) |
