diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-02-07 10:45:04 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-02-07 10:45:04 +0000 |
commit | d173a14619f5a9a7d647ffabdf4eb1903791ecdc (patch) | |
tree | 105fabb77ca904638c12682148e246aecf233f1e /src/http/modules/ngx_http_fastcgi_module.c | |
parent | f2aab8132373555a214aedeaf96d01969468baa3 (diff) | |
download | nginx-d173a14619f5a9a7d647ffabdf4eb1903791ecdc.tar.gz nginx-d173a14619f5a9a7d647ffabdf4eb1903791ecdc.zip |
fix order
Diffstat (limited to 'src/http/modules/ngx_http_fastcgi_module.c')
-rw-r--r-- | src/http/modules/ngx_http_fastcgi_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index b207a3adc..a0a328fac 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -135,10 +135,6 @@ static char *ngx_http_fastcgi_upstream_fail_timeout_unsupported(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); -static ngx_str_t ngx_http_fastcgi_script_name = - ngx_string("fastcgi_script_name"); - - static ngx_conf_post_t ngx_http_fastcgi_lowat_post = { ngx_http_fastcgi_lowat_check }; @@ -412,6 +408,10 @@ static ngx_http_fastcgi_request_start_t ngx_http_fastcgi_request_start = { }; +static ngx_str_t ngx_http_fastcgi_script_name = + ngx_string("fastcgi_script_name"); + + static ngx_str_t ngx_http_fastcgi_hide_headers[] = { ngx_string("Status"), ngx_string("X-Accel-Expires"), |