diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-07-03 16:49:20 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-07-03 16:49:20 +0000 |
commit | 3186bf5369de4cf95bbfbeffc1838c4e23fba3c1 (patch) | |
tree | 66f29ec626f8f1a5d7f25fc14b4f7633429a0148 /src/core/ngx_file.c | |
parent | 9f408ae228d49b3921c1deeabce117cb9a6cc72f (diff) | |
download | nginx-3186bf5369de4cf95bbfbeffc1838c4e23fba3c1.tar.gz nginx-3186bf5369de4cf95bbfbeffc1838c4e23fba3c1.zip |
nginx-0.3.52-RELEASE importrelease-0.3.52
*) Change: the ngx_http_index_module behavior for the "POST /" requests
is reverted to the 0.3.40 version state: the module now does not
return the 405 error.
*) Bugfix: the worker process may got caught in an endless loop if the
limit rate was used; the bug had appeared in 0.3.37.
*) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even
if the recoding was not needed; the bug had appeared in 0.3.50.
*) Bugfix: if a code response of the PUT request was 409, then a
temporary file was not removed.
Diffstat (limited to 'src/core/ngx_file.c')
-rw-r--r-- | src/core/ngx_file.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/ngx_file.c b/src/core/ngx_file.c index c3c4592a7..0d094ec87 100644 --- a/src/core/ngx_file.c +++ b/src/core/ngx_file.c @@ -259,6 +259,10 @@ ngx_conf_set_path_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) path->name = value[1]; + if (path->name.data[path->name.len - 1] == '/') { + path->name.len--; + } + if (ngx_conf_full_name(cf->cycle, &path->name) == NGX_ERROR) { return NULL; } |