diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-05-31 15:10:10 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2010-05-31 15:10:10 +0000 |
commit | 1b92168d269e63365325475f5b1508a1618faa21 (patch) | |
tree | 1ac19d5e83f6b7ec8b4a7b9240f71182f9428a14 /src/http/ngx_http_request.h | |
parent | 4bd8ede8d4d55d80aeaa4088977a79a54c927a6d (diff) | |
download | nginx-0.8.39.tar.gz |
Changes with nginx 0.8.39 31 May 2010v0.8.39
*) Bugfix: an inherited "alias" directive worked incorrectly in
inclusive location.
*) Bugfix: in "alias" with variables and "try_files" directives
combination.
*) Bugfix: listen unix domain and IPv6 sockets did not inherit while
online upgrade.
Thanks to Maxim Dounin.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index f9622714c..0559b4650 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -437,6 +437,7 @@ struct ngx_http_request_s { unsigned invalid_header:1; + unsigned add_uri_to_alias:1; unsigned valid_location:1; unsigned valid_unparsed_uri:1; unsigned uri_changed:1; |