aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_core_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r--src/http/ngx_http_core_module.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h
index 2a94ea450..ad566178e 100644
--- a/src/http/ngx_http_core_module.h
+++ b/src/http/ngx_http_core_module.h
@@ -18,13 +18,8 @@ typedef struct {
typedef struct {
- int post_accept_timeout;
int connection_pool_size;
- int request_pool_size;
- int client_header_timeout;
- int client_header_buffer_size;
- int large_client_header;
- int url_in_error_log;
+ int post_accept_timeout;
ngx_array_t servers; /* array of ngx_http_core_srv_conf_t */
} ngx_http_core_main_conf_t;
@@ -40,6 +35,11 @@ typedef struct {
array of ngx_http_server_name_t */
ngx_http_conf_ctx_t *ctx; /* server ctx */
+
+ size_t request_pool_size;
+ ngx_msec_t client_header_timeout;
+ size_t client_header_buffer_size;
+ int large_client_header;
} ngx_http_core_srv_conf_t;