aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-07-29 18:11:39 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-07-29 18:11:39 +0000
commit8889b65711cc93dfdbbd570384fe2e39391cc94e (patch)
tree1ec9dc6fe20145da12412864d30eae44be7358ed /src/http/ngx_http.c
parenta1df416d65167dcb6e472ae11a00ef67e770acec (diff)
downloadnginx-8889b65711cc93dfdbbd570384fe2e39391cc94e.tar.gz
nginx-8889b65711cc93dfdbbd570384fe2e39391cc94e.zip
named location
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r--src/http/ngx_http.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index 5823a2b91..dfe6eff70 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -401,6 +401,7 @@ ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
cmcf->phase_engine.server_rewrite_index = (ngx_uint_t) -1;
+ cmcf->phase_engine.location_rewrite_index = (ngx_uint_t) -1;
find_config_index = 0;
use_rewrite = cmcf->phases[NGX_HTTP_REWRITE_PHASE].handlers.nelts ? 1 : 0;
use_access = cmcf->phases[NGX_HTTP_ACCESS_PHASE].handlers.nelts ? 1 : 0;
@@ -442,6 +443,14 @@ ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
continue;
+ case NGX_HTTP_REWRITE_PHASE:
+ if (cmcf->phase_engine.location_rewrite_index == (ngx_uint_t) -1) {
+ cmcf->phase_engine.location_rewrite_index = n;
+ }
+ checker = ngx_http_core_generic_phase;
+
+ break;
+
case NGX_HTTP_POST_REWRITE_PHASE:
if (use_rewrite) {
ph->checker = ngx_http_core_post_rewrite_phase;