Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 1 | |
| 2 | #include <ngx_config.h> |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 3 | #include <ngx_core.h> |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 4 | #include <ngx_event.h> |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 5 | #include <ngx_http.h> |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 6 | #include <nginx.h> |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 7 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 8 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 9 | static void ngx_http_phase_event_handler(ngx_event_t *rev); |
| 10 | static void ngx_http_run_phases(ngx_http_request_t *r); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 11 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 12 | static void *ngx_http_core_create_main_conf(ngx_conf_t *cf); |
| 13 | static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf); |
| 14 | static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf); |
| 15 | static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf, |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 16 | void *parent, void *child); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 17 | static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf); |
| 18 | static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf, |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 19 | void *parent, void *child); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 20 | |
Igor Sysoev | 340b03b | 2003-07-04 15:10:33 +0000 | [diff] [blame] | 21 | static int ngx_http_core_init(ngx_cycle_t *cycle); |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 22 | static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 23 | static int ngx_cmp_locations(const void *first, const void *second); |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 24 | static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 25 | void *dummy); |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 26 | static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 27 | static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf); |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 28 | static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 29 | static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 30 | void *conf); |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 31 | static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 32 | static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 33 | |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 34 | static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data); |
| 35 | |
| 36 | static ngx_conf_post_t ngx_http_lowat_post = { ngx_http_lowat_check } ; |
| 37 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 38 | |
| 39 | static ngx_command_t ngx_http_core_commands[] = { |
| 40 | |
| 41 | {ngx_string("server"), |
| 42 | NGX_HTTP_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS, |
| 43 | ngx_server_block, |
| 44 | 0, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 45 | 0, |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 46 | NULL}, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 47 | |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 48 | {ngx_string("connection_pool_size"), |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 49 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 50 | ngx_conf_set_size_slot, |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 51 | NGX_HTTP_SRV_CONF_OFFSET, |
| 52 | offsetof(ngx_http_core_srv_conf_t, connection_pool_size), |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 53 | NULL}, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 54 | |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 55 | {ngx_string("post_accept_timeout"), |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 56 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 3d09c8d | 2003-05-06 17:03:16 +0000 | [diff] [blame] | 57 | ngx_conf_set_msec_slot, |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 58 | NGX_HTTP_SRV_CONF_OFFSET, |
| 59 | offsetof(ngx_http_core_srv_conf_t, post_accept_timeout), |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 60 | NULL}, |
| 61 | |
| 62 | {ngx_string("request_pool_size"), |
| 63 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
| 64 | ngx_conf_set_size_slot, |
| 65 | NGX_HTTP_SRV_CONF_OFFSET, |
| 66 | offsetof(ngx_http_core_srv_conf_t, request_pool_size), |
| 67 | NULL}, |
| 68 | |
| 69 | {ngx_string("client_header_timeout"), |
| 70 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
| 71 | ngx_conf_set_msec_slot, |
| 72 | NGX_HTTP_SRV_CONF_OFFSET, |
| 73 | offsetof(ngx_http_core_srv_conf_t, client_header_timeout), |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 74 | NULL}, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 75 | |
| 76 | {ngx_string("client_header_buffer_size"), |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 77 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 78 | ngx_conf_set_size_slot, |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 79 | NGX_HTTP_SRV_CONF_OFFSET, |
| 80 | offsetof(ngx_http_core_srv_conf_t, client_header_buffer_size), |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 81 | NULL}, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 82 | |
| 83 | {ngx_string("large_client_header"), |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 84 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_FLAG, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 85 | ngx_conf_set_flag_slot, |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 86 | NGX_HTTP_SRV_CONF_OFFSET, |
| 87 | offsetof(ngx_http_core_srv_conf_t, large_client_header), |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 88 | NULL}, |
Igor Sysoev | 6a644c6 | 2003-03-04 06:33:48 +0000 | [diff] [blame] | 89 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 90 | {ngx_string("location"), |
| 91 | NGX_HTTP_SRV_CONF|NGX_CONF_BLOCK|NGX_CONF_TAKE1, |
| 92 | ngx_location_block, |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 93 | NGX_HTTP_SRV_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 94 | 0, |
| 95 | NULL}, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 96 | |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 97 | {ngx_string("listen"), |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 98 | #if 0 |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 99 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 100 | #else |
| 101 | NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1, |
| 102 | #endif |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 103 | ngx_set_listen, |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 104 | NGX_HTTP_SRV_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 105 | 0, |
| 106 | NULL}, |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 107 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 108 | {ngx_string("server_name"), |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 109 | NGX_HTTP_SRV_CONF|NGX_CONF_1MORE, |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 110 | ngx_set_server_name, |
| 111 | NGX_HTTP_SRV_CONF_OFFSET, |
| 112 | 0, |
| 113 | NULL}, |
| 114 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 115 | {ngx_string("types"), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 116 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF |
| 117 | |NGX_CONF_BLOCK|NGX_CONF_NOARGS, |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 118 | ngx_types_block, |
| 119 | NGX_HTTP_LOC_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 120 | 0, |
| 121 | NULL}, |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 122 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 123 | {ngx_string("default_type"), |
| 124 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
| 125 | ngx_conf_set_str_slot, |
| 126 | NGX_HTTP_LOC_CONF_OFFSET, |
| 127 | offsetof(ngx_http_core_loc_conf_t, default_type), |
| 128 | NULL}, |
| 129 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 130 | {ngx_string("root"), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 131 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 132 | ngx_conf_set_str_slot, |
| 133 | NGX_HTTP_LOC_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 134 | offsetof(ngx_http_core_loc_conf_t, doc_root), |
| 135 | NULL}, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 136 | |
Igor Sysoev | 2b0c76c | 2003-10-27 21:01:00 +0000 | [diff] [blame] | 137 | {ngx_string("client_body_timeout"), |
| 138 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
| 139 | ngx_conf_set_msec_slot, |
| 140 | NGX_HTTP_LOC_CONF_OFFSET, |
| 141 | offsetof(ngx_http_core_loc_conf_t, client_body_timeout), |
| 142 | NULL}, |
| 143 | |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 144 | {ngx_string("sendfile"), |
Igor Sysoev | ab0c4f5 | 2003-10-28 15:45:41 +0000 | [diff] [blame] | 145 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG, |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 146 | ngx_conf_set_flag_slot, |
| 147 | NGX_HTTP_LOC_CONF_OFFSET, |
| 148 | offsetof(ngx_http_core_loc_conf_t, sendfile), |
| 149 | NULL}, |
| 150 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 151 | {ngx_string("send_timeout"), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 152 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 3d09c8d | 2003-05-06 17:03:16 +0000 | [diff] [blame] | 153 | ngx_conf_set_msec_slot, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 154 | NGX_HTTP_LOC_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 155 | offsetof(ngx_http_core_loc_conf_t, send_timeout), |
| 156 | NULL}, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 157 | |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 158 | {ngx_string("send_lowat"), |
| 159 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
| 160 | ngx_conf_set_size_slot, |
| 161 | NGX_HTTP_LOC_CONF_OFFSET, |
| 162 | offsetof(ngx_http_core_loc_conf_t, send_lowat), |
| 163 | &ngx_http_lowat_post}, |
| 164 | |
Igor Sysoev | fa73aac | 2003-05-21 13:28:21 +0000 | [diff] [blame] | 165 | {ngx_string("keepalive_timeout"), |
| 166 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
| 167 | ngx_conf_set_msec_slot, |
| 168 | NGX_HTTP_LOC_CONF_OFFSET, |
| 169 | offsetof(ngx_http_core_loc_conf_t, keepalive_timeout), |
| 170 | NULL}, |
| 171 | |
Igor Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 172 | {ngx_string("lingering_time"), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 173 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 3d09c8d | 2003-05-06 17:03:16 +0000 | [diff] [blame] | 174 | ngx_conf_set_msec_slot, |
Igor Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 175 | NGX_HTTP_LOC_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 176 | offsetof(ngx_http_core_loc_conf_t, lingering_time), |
| 177 | NULL}, |
Igor Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 178 | |
| 179 | {ngx_string("lingering_timeout"), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 180 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
Igor Sysoev | 3d09c8d | 2003-05-06 17:03:16 +0000 | [diff] [blame] | 181 | ngx_conf_set_msec_slot, |
Igor Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 182 | NGX_HTTP_LOC_CONF_OFFSET, |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 183 | offsetof(ngx_http_core_loc_conf_t, lingering_timeout), |
| 184 | NULL}, |
Igor Sysoev | b738757 | 2003-03-11 20:38:13 +0000 | [diff] [blame] | 185 | |
Igor Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 186 | {ngx_string("msie_padding"), |
Igor Sysoev | ab0c4f5 | 2003-10-28 15:45:41 +0000 | [diff] [blame] | 187 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG, |
Igor Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 188 | ngx_conf_set_flag_slot, |
| 189 | NGX_HTTP_LOC_CONF_OFFSET, |
| 190 | offsetof(ngx_http_core_loc_conf_t, msie_padding), |
| 191 | NULL}, |
| 192 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 193 | {ngx_string("error_page"), |
| 194 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_2MORE, |
| 195 | ngx_set_error_page, |
| 196 | NGX_HTTP_LOC_CONF_OFFSET, |
| 197 | 0, |
| 198 | NULL}, |
| 199 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 200 | {ngx_string("error_log"), |
| 201 | NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, |
| 202 | ngx_set_error_log, |
| 203 | NGX_HTTP_LOC_CONF_OFFSET, |
| 204 | 0, |
| 205 | NULL}, |
| 206 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 207 | ngx_null_command |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 208 | }; |
| 209 | |
| 210 | |
| 211 | ngx_http_module_t ngx_http_core_module_ctx = { |
Igor Sysoev | 7832933 | 2003-11-10 17:17:31 +0000 | [diff] [blame] | 212 | NULL, /* pre conf */ |
| 213 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 214 | ngx_http_core_create_main_conf, /* create main configuration */ |
| 215 | ngx_http_core_init_main_conf, /* init main configuration */ |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 216 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 217 | ngx_http_core_create_srv_conf, /* create server configuration */ |
| 218 | ngx_http_core_merge_srv_conf, /* merge server configuration */ |
| 219 | |
| 220 | ngx_http_core_create_loc_conf, /* create location configuration */ |
| 221 | ngx_http_core_merge_loc_conf /* merge location configuration */ |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | |
| 225 | ngx_module_t ngx_http_core_module = { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 226 | NGX_MODULE, |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 227 | &ngx_http_core_module_ctx, /* module context */ |
| 228 | ngx_http_core_commands, /* module directives */ |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 229 | NGX_HTTP_MODULE, /* module type */ |
Igor Sysoev | 96c56c9 | 2003-07-02 14:41:17 +0000 | [diff] [blame] | 230 | ngx_http_core_init, /* init module */ |
Igor Sysoev | 340b03b | 2003-07-04 15:10:33 +0000 | [diff] [blame] | 231 | NULL /* init child */ |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 232 | }; |
| 233 | |
| 234 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 235 | void ngx_http_handler(ngx_http_request_t *r) |
| 236 | { |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 237 | ngx_http_log_ctx_t *lcx; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 238 | |
| 239 | r->connection->unexpected_eof = 0; |
| 240 | |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 241 | lcx = r->connection->log->data; |
| 242 | lcx->action = NULL; |
| 243 | |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 244 | switch (r->headers_in.connection_type) { |
| 245 | case 0: |
| 246 | if (r->http_version > NGX_HTTP_VERSION_10) { |
| 247 | r->keepalive = 1; |
| 248 | } else { |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 249 | r->keepalive = 0; |
| 250 | } |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 251 | break; |
| 252 | |
| 253 | case NGX_HTTP_CONNECTION_CLOSE: |
| 254 | r->keepalive = 0; |
| 255 | break; |
| 256 | |
| 257 | case NGX_HTTP_CONNECTION_KEEP_ALIVE: |
| 258 | r->keepalive = 1; |
| 259 | break; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Igor Sysoev | 10fc9ef | 2003-10-27 08:53:49 +0000 | [diff] [blame] | 262 | #if 0 |
Igor Sysoev | dc9dd43 | 2003-10-22 16:38:26 +0000 | [diff] [blame] | 263 | /* TEST STUB */ r->http_version = NGX_HTTP_VERSION_10; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 264 | /* TEST STUB */ r->keepalive = 0; |
| 265 | #endif |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 266 | |
| 267 | if (r->headers_in.content_length_n > 0) { |
| 268 | r->lingering_close = 1; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 269 | |
| 270 | } else { |
| 271 | r->lingering_close = 0; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 274 | #if 0 |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 275 | /* TEST STUB */ r->lingering_close = 1; |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 276 | #endif |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 277 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 278 | r->connection->write->event_handler = ngx_http_phase_event_handler; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 279 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 280 | ngx_http_run_phases(r); |
| 281 | |
| 282 | return; |
| 283 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 284 | |
| 285 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 286 | static void ngx_http_phase_event_handler(ngx_event_t *ev) |
| 287 | { |
| 288 | ngx_connection_t *c; |
| 289 | ngx_http_request_t *r; |
| 290 | |
| 291 | c = ev->data; |
| 292 | r = c->data; |
| 293 | |
Igor Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 294 | ngx_log_debug(ev->log, "phase event handler"); |
| 295 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 296 | ngx_http_run_phases(r); |
| 297 | |
| 298 | return; |
| 299 | } |
| 300 | |
| 301 | |
| 302 | static void ngx_http_run_phases(ngx_http_request_t *r) |
| 303 | { |
| 304 | int rc; |
| 305 | ngx_http_handler_pt *h; |
| 306 | ngx_http_core_main_conf_t *cmcf; |
| 307 | |
| 308 | cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module); |
| 309 | |
| 310 | rc = NGX_DECLINED; |
| 311 | |
| 312 | for (/* void */; r->phase < NGX_HTTP_LAST_PHASE; r->phase++) { |
| 313 | |
| 314 | h = cmcf->phases[r->phase].handlers.elts; |
| 315 | for (r->phase_handler = cmcf->phases[r->phase].handlers.nelts - 1; |
| 316 | r->phase_handler >= 0; |
| 317 | r->phase_handler--) |
| 318 | { |
| 319 | rc = h[r->phase_handler](r); |
| 320 | |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 321 | if (rc == NGX_DONE) { |
| 322 | return; |
| 323 | } |
| 324 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 325 | if (rc == NGX_DECLINED) { |
| 326 | continue; |
| 327 | } |
| 328 | |
| 329 | if (rc == NGX_AGAIN) { |
| 330 | return; |
| 331 | } |
| 332 | |
| 333 | if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { |
| 334 | ngx_http_finalize_request(r, rc); |
| 335 | return; |
| 336 | } |
| 337 | |
| 338 | if (rc == NGX_OK && cmcf->phases[r->phase].type == NGX_OK) { |
| 339 | break; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | if (cmcf->phases[r->phase].post_handler) { |
| 344 | rc = cmcf->phases[r->phase].post_handler(r); |
| 345 | |
| 346 | if (rc == NGX_AGAIN) { |
| 347 | return; |
| 348 | } |
| 349 | |
| 350 | if (rc == NGX_ERROR || rc >= NGX_HTTP_SPECIAL_RESPONSE) { |
| 351 | ngx_http_finalize_request(r, rc); |
| 352 | return; |
| 353 | } |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | if (r->content_handler) { |
Igor Sysoev | 160d774 | 2003-11-19 16:26:41 +0000 | [diff] [blame] | 358 | r->connection->write->event_handler = ngx_http_empty_handler; |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 359 | rc = r->content_handler(r); |
| 360 | ngx_http_finalize_request(r, rc); |
| 361 | return; |
| 362 | } |
| 363 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 364 | ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); |
| 365 | return; |
| 366 | } |
| 367 | |
| 368 | |
| 369 | int ngx_http_find_location_config(ngx_http_request_t *r) |
| 370 | { |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 371 | int i, rc; |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 372 | ngx_str_t *auto_redirect; |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 373 | ngx_http_core_loc_conf_t *clcf, **clcfp; |
| 374 | ngx_http_core_srv_conf_t *cscf; |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 375 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 376 | cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module); |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 377 | auto_redirect = NULL; |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 378 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 379 | clcfp = cscf->locations.elts; |
| 380 | for (i = 0; i < cscf->locations.nelts; i++) { |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 381 | #if 0 |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 382 | ngx_log_debug(r->connection->log, "trans: %s" _ clcfp[i]->name.data); |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 383 | #endif |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 384 | if (clcfp[i]->auto_redirect |
| 385 | && r->uri.len == clcfp[i]->name.len - 1 |
| 386 | && ngx_strncmp(r->uri.data, clcfp[i]->name.data, |
| 387 | clcfp[i]->name.len - 1) == 0) |
| 388 | { |
| 389 | auto_redirect = &clcfp[i]->name; |
| 390 | continue; |
| 391 | } |
| 392 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 393 | if (r->uri.len < clcfp[i]->name.len) { |
| 394 | continue; |
| 395 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 396 | |
Igor Sysoev | 6597749 | 2003-11-02 22:56:18 +0000 | [diff] [blame] | 397 | rc = ngx_strncmp(r->uri.data, clcfp[i]->name.data, clcfp[i]->name.len); |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 398 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 399 | if (rc < 0) { |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 400 | /* locations are lexicographically sorted */ |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 401 | break; |
| 402 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 403 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 404 | if (rc == 0) { |
| 405 | r->loc_conf = clcfp[i]->loc_conf; |
| 406 | clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); |
| 407 | r->connection->log->file = clcf->err_log->file; |
| 408 | r->connection->log->log_level = clcf->err_log->log_level; |
| 409 | } |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Igor Sysoev | 419f9ac | 2003-10-21 16:49:56 +0000 | [diff] [blame] | 412 | clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); |
| 413 | |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 414 | if (!(ngx_io.flags & NGX_IO_SENDFILE) || !clcf->sendfile) { |
| 415 | r->sendfile = 0; |
| 416 | |
| 417 | } else { |
| 418 | r->sendfile = 1; |
| 419 | } |
| 420 | |
Igor Sysoev | 1b138ed | 2003-11-18 21:34:08 +0000 | [diff] [blame] | 421 | if (auto_redirect) { |
| 422 | if (!(r->headers_out.location = |
| 423 | ngx_http_add_header(&r->headers_out, ngx_http_headers_out))) |
| 424 | { |
| 425 | return NGX_HTTP_INTERNAL_SERVER_ERROR; |
| 426 | } |
| 427 | |
| 428 | #if 0 |
| 429 | r->headers_out.location->key.len = 8; |
| 430 | r->headers_out.location->key.data = "Location"; |
| 431 | #endif |
| 432 | r->headers_out.location->value = *auto_redirect; |
| 433 | |
| 434 | return NGX_HTTP_MOVED_PERMANENTLY; |
| 435 | } |
| 436 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 437 | if (clcf->handler) { |
Igor Sysoev | d404c97 | 2003-10-16 20:19:16 +0000 | [diff] [blame] | 438 | /* |
| 439 | * if the location already has content handler then skip |
| 440 | * the translation phase |
| 441 | */ |
| 442 | |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 443 | r->content_handler = clcf->handler; |
Igor Sysoev | d404c97 | 2003-10-16 20:19:16 +0000 | [diff] [blame] | 444 | r->phase++; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 447 | return NGX_OK; |
| 448 | } |
| 449 | |
| 450 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 451 | int ngx_http_send_header(ngx_http_request_t *r) |
| 452 | { |
Igor Sysoev | 10fc9ef | 2003-10-27 08:53:49 +0000 | [diff] [blame] | 453 | if (r->main) { |
| 454 | return NGX_OK; |
| 455 | } |
| 456 | |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 457 | if (r->err_ctx) { |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 458 | r->headers_out.status = r->err_status; |
| 459 | r->headers_out.status_line.len = 0; |
| 460 | } |
| 461 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 462 | return (*ngx_http_top_header_filter)(r); |
| 463 | } |
| 464 | |
| 465 | |
| 466 | int ngx_http_redirect(ngx_http_request_t *r, int redirect) |
| 467 | { |
| 468 | /* STUB */ |
| 469 | |
| 470 | /* log request */ |
| 471 | |
Igor Sysoev | d581fd5 | 2003-05-13 16:02:32 +0000 | [diff] [blame] | 472 | ngx_http_close_request(r, 0); |
| 473 | return NGX_OK; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 477 | int ngx_http_error(ngx_http_request_t *r, int error) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 478 | { |
| 479 | /* STUB */ |
| 480 | ngx_log_debug(r->connection->log, "http error: %d" _ error); |
| 481 | |
| 482 | /* log request */ |
| 483 | |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 484 | ngx_http_special_response_handler(r, error); |
Igor Sysoev | d581fd5 | 2003-05-13 16:02:32 +0000 | [diff] [blame] | 485 | ngx_http_close_request(r, 0); |
| 486 | return NGX_OK; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 490 | int ngx_http_internal_redirect(ngx_http_request_t *r, |
| 491 | ngx_str_t *uri, ngx_str_t *args) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 492 | { |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 493 | int i; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 494 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 495 | ngx_log_debug(r->connection->log, "internal redirect: '%s'" _ uri->data); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 496 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 497 | r->uri.len = uri->len; |
| 498 | r->uri.data = uri->data; |
| 499 | |
| 500 | if (args) { |
| 501 | r->args.len = args->len; |
| 502 | r->args.data = args->data; |
| 503 | } |
| 504 | |
| 505 | r->exten.len = 0; |
| 506 | r->exten.data = NULL; |
| 507 | |
| 508 | for (i = uri->len - 1; i > 1; i--) { |
| 509 | if (uri->data[i] == '.' && uri->data[i - 1] != '/') { |
| 510 | r->exten.len = uri->len - i - 1; |
| 511 | |
| 512 | if (r->exten.len > 0) { |
| 513 | ngx_test_null(r->exten.data, |
| 514 | ngx_palloc(r->pool, r->exten.len + 1), |
| 515 | NGX_HTTP_INTERNAL_SERVER_ERROR); |
| 516 | |
| 517 | ngx_cpystrn(r->exten.data, &uri->data[i + 1], r->exten.len + 1); |
| 518 | } |
| 519 | |
| 520 | break; |
| 521 | |
| 522 | } else if (uri->data[i] == '/') { |
| 523 | break; |
| 524 | } |
| 525 | } |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 526 | |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 527 | if (r->err_ctx) { |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 528 | |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 529 | /* allocate the new modules contexts */ |
| 530 | |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 531 | r->ctx = ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module); |
| 532 | if (r->ctx == NULL) { |
| 533 | return NGX_HTTP_INTERNAL_SERVER_ERROR; |
| 534 | } |
| 535 | |
| 536 | } else { |
Igor Sysoev | 27c30f9 | 2003-11-11 18:13:43 +0000 | [diff] [blame] | 537 | |
| 538 | /* clear the modules contexts */ |
| 539 | |
Igor Sysoev | d59a047 | 2003-11-10 21:09:22 +0000 | [diff] [blame] | 540 | ngx_memzero(r->ctx, sizeof(void *) * ngx_http_max_module); |
| 541 | } |
Igor Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 542 | |
| 543 | r->phase = 0; |
| 544 | r->phase_handler = 0; |
| 545 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 546 | ngx_http_handler(r); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 547 | |
Igor Sysoev | 9760a13 | 2003-10-21 07:47:21 +0000 | [diff] [blame] | 548 | return NGX_DONE; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | |
Igor Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 552 | #if 1 /* STUB: test the delay http handler */ |
| 553 | |
| 554 | int ngx_http_delay_handler(ngx_http_request_t *r) |
| 555 | { |
| 556 | static int on; |
| 557 | |
| 558 | if (on++ == 0) { |
| 559 | ngx_log_debug(r->connection->log, "SET http delay"); |
| 560 | ngx_add_timer(r->connection->write, 10000); |
| 561 | return NGX_AGAIN; |
| 562 | } |
| 563 | |
| 564 | r->connection->write->timedout = 0; |
| 565 | ngx_log_debug(r->connection->log, "RESET http delay"); |
| 566 | return NGX_DECLINED; |
| 567 | } |
| 568 | |
| 569 | #endif |
| 570 | |
| 571 | |
Igor Sysoev | 340b03b | 2003-07-04 15:10:33 +0000 | [diff] [blame] | 572 | static int ngx_http_core_init(ngx_cycle_t *cycle) |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 573 | { |
Igor Sysoev | d404c97 | 2003-10-16 20:19:16 +0000 | [diff] [blame] | 574 | #if 0 |
Igor Sysoev | 9d9f58f | 2003-07-02 18:51:41 +0000 | [diff] [blame] | 575 | ngx_http_handler_pt *h; |
Igor Sysoev | d404c97 | 2003-10-16 20:19:16 +0000 | [diff] [blame] | 576 | #endif |
Igor Sysoev | 9d9f58f | 2003-07-02 18:51:41 +0000 | [diff] [blame] | 577 | ngx_http_conf_ctx_t *ctx; |
| 578 | ngx_http_core_main_conf_t *cmcf; |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 579 | |
Igor Sysoev | 9d9f58f | 2003-07-02 18:51:41 +0000 | [diff] [blame] | 580 | ctx = (ngx_http_conf_ctx_t *) cycle->conf_ctx[ngx_http_module.index]; |
| 581 | cmcf = ctx->main_conf[ngx_http_core_module.ctx_index]; |
| 582 | |
Igor Sysoev | 0a280a3 | 2003-10-12 16:49:16 +0000 | [diff] [blame] | 583 | #if 0 |
| 584 | ngx_test_null(h, ngx_push_array( |
| 585 | &cmcf->phases[NGX_HTTP_TRANSLATE_PHASE].handlers), |
| 586 | NGX_ERROR); |
| 587 | *h = ngx_http_delay_handler; |
| 588 | #endif |
| 589 | |
Igor Sysoev | dc479b4 | 2003-03-20 16:09:44 +0000 | [diff] [blame] | 590 | return NGX_OK; |
| 591 | } |
| 592 | |
| 593 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 594 | static char *ngx_server_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 595 | { |
Igor Sysoev | 1c13c66 | 2003-05-20 15:37:55 +0000 | [diff] [blame] | 596 | int m; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 597 | char *rv; |
| 598 | ngx_http_module_t *module; |
| 599 | ngx_conf_t pcf; |
| 600 | ngx_http_conf_ctx_t *ctx, *hctx, *pctx; |
| 601 | ngx_http_core_main_conf_t *cmcf; |
| 602 | ngx_http_core_srv_conf_t *cscf, **cscfp; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 603 | |
| 604 | ngx_test_null(ctx, |
| 605 | ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)), |
| 606 | NGX_CONF_ERROR); |
| 607 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 608 | hctx = (ngx_http_conf_ctx_t *) cf->ctx; |
| 609 | ctx->main_conf = hctx->main_conf; |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 610 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 611 | /* the server{}'s srv_conf */ |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 612 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 613 | ngx_test_null(ctx->srv_conf, |
| 614 | ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module), |
| 615 | NGX_CONF_ERROR); |
| 616 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 617 | /* the server{}'s loc_conf */ |
Igor Sysoev | bb4ec5c | 2003-05-16 15:27:48 +0000 | [diff] [blame] | 618 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 619 | ngx_test_null(ctx->loc_conf, |
| 620 | ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module), |
| 621 | NGX_CONF_ERROR); |
| 622 | |
Igor Sysoev | 1c13c66 | 2003-05-20 15:37:55 +0000 | [diff] [blame] | 623 | for (m = 0; ngx_modules[m]; m++) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 624 | if (ngx_modules[m]->type != NGX_HTTP_MODULE) { |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 625 | continue; |
| 626 | } |
| 627 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 628 | module = ngx_modules[m]->ctx; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 629 | |
| 630 | if (module->create_srv_conf) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 631 | ngx_test_null(ctx->srv_conf[ngx_modules[m]->ctx_index], |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 632 | module->create_srv_conf(cf), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 633 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | if (module->create_loc_conf) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 637 | ngx_test_null(ctx->loc_conf[ngx_modules[m]->ctx_index], |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 638 | module->create_loc_conf(cf), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 639 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 640 | } |
| 641 | } |
| 642 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 643 | /* create links of the srv_conf's */ |
| 644 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 645 | cscf = ctx->srv_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 646 | cscf->ctx = ctx; |
| 647 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 648 | cmcf = ctx->main_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 649 | ngx_test_null(cscfp, ngx_push_array(&cmcf->servers), NGX_CONF_ERROR); |
| 650 | *cscfp = cscf; |
| 651 | |
| 652 | /* parse inside server{} */ |
| 653 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 654 | pcf = *cf; |
| 655 | pctx = cf->ctx; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 656 | cf->ctx = ctx; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 657 | cf->cmd_type = NGX_HTTP_SRV_CONF; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 658 | rv = ngx_conf_parse(cf, NULL); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 659 | *cf = pcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 660 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 661 | if (rv != NGX_CONF_OK) { |
| 662 | return rv; |
| 663 | } |
| 664 | |
Igor Sysoev | d9d0ca1 | 2003-11-21 06:30:49 +0000 | [diff] [blame^] | 665 | ngx_qsort(cscf->locations.elts, (size_t) cscf->locations.nelts, |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 666 | sizeof(void *), ngx_cmp_locations); |
| 667 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 668 | return rv; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 672 | static int ngx_cmp_locations(const void *first, const void *second) |
| 673 | { |
| 674 | ngx_http_core_loc_conf_t *one = *(ngx_http_core_loc_conf_t **) first; |
| 675 | ngx_http_core_loc_conf_t *two = *(ngx_http_core_loc_conf_t **) second; |
| 676 | |
| 677 | return ngx_strcmp(one->name.data, two->name.data); |
| 678 | } |
| 679 | |
| 680 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 681 | static char *ngx_location_block(ngx_conf_t *cf, ngx_command_t *cmd, void *dummy) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 682 | { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 683 | int m; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 684 | char *rv; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 685 | ngx_str_t *location; |
| 686 | ngx_http_module_t *module; |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 687 | ngx_conf_t pvcf; |
| 688 | ngx_http_conf_ctx_t *ctx, *pvctx; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 689 | ngx_http_core_srv_conf_t *cscf; |
| 690 | ngx_http_core_loc_conf_t *clcf, **clcfp; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 691 | |
| 692 | ngx_test_null(ctx, |
| 693 | ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)), |
| 694 | NGX_CONF_ERROR); |
| 695 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 696 | pvctx = (ngx_http_conf_ctx_t *) cf->ctx; |
| 697 | ctx->main_conf = pvctx->main_conf; |
| 698 | ctx->srv_conf = pvctx->srv_conf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 699 | |
| 700 | ngx_test_null(ctx->loc_conf, |
| 701 | ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module), |
| 702 | NGX_CONF_ERROR); |
| 703 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 704 | for (m = 0; ngx_modules[m]; m++) { |
| 705 | if (ngx_modules[m]->type != NGX_HTTP_MODULE) { |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 706 | continue; |
| 707 | } |
| 708 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 709 | module = ngx_modules[m]->ctx; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 710 | |
| 711 | if (module->create_loc_conf) { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 712 | ngx_test_null(ctx->loc_conf[ngx_modules[m]->ctx_index], |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 713 | module->create_loc_conf(cf), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 714 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 715 | } |
| 716 | } |
| 717 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 718 | clcf = ctx->loc_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 719 | location = (ngx_str_t *) cf->args->elts; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 720 | clcf->name.len = location[1].len; |
| 721 | clcf->name.data = location[1].data; |
| 722 | clcf->loc_conf = ctx->loc_conf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 723 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 724 | cscf = ctx->srv_conf[ngx_http_core_module.ctx_index]; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 725 | ngx_test_null(clcfp, ngx_push_array(&cscf->locations), NGX_CONF_ERROR); |
| 726 | *clcfp = clcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 727 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 728 | pvcf = *cf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 729 | cf->ctx = ctx; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 730 | cf->cmd_type = NGX_HTTP_LOC_CONF; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 731 | rv = ngx_conf_parse(cf, NULL); |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 732 | *cf = pvcf; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 733 | |
| 734 | return rv; |
| 735 | } |
| 736 | |
| 737 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 738 | static char *ngx_types_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 739 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 740 | char *rv; |
| 741 | ngx_conf_t pcf; |
| 742 | |
| 743 | pcf = *cf; |
| 744 | cf->handler = ngx_set_type; |
| 745 | cf->handler_conf = conf; |
| 746 | rv = ngx_conf_parse(cf, NULL); |
| 747 | *cf = pcf; |
| 748 | |
| 749 | return rv; |
| 750 | } |
| 751 | |
| 752 | |
| 753 | static char *ngx_set_type(ngx_conf_t *cf, ngx_command_t *dummy, void *conf) |
| 754 | { |
| 755 | ngx_http_core_loc_conf_t *lcf = conf; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 756 | |
| 757 | int i, key; |
| 758 | ngx_str_t *args; |
| 759 | ngx_http_type_t *t; |
| 760 | |
| 761 | if (lcf->types == NULL) { |
| 762 | ngx_test_null(lcf->types, |
| 763 | ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME |
| 764 | * sizeof(ngx_array_t)), |
| 765 | NGX_CONF_ERROR); |
| 766 | |
| 767 | for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) { |
| 768 | ngx_init_array(lcf->types[i], cf->pool, 5, sizeof(ngx_http_type_t), |
| 769 | NGX_CONF_ERROR); |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | args = (ngx_str_t *) cf->args->elts; |
| 774 | |
| 775 | for (i = 1; i < cf->args->nelts; i++) { |
| 776 | ngx_http_types_hash_key(key, args[i]); |
| 777 | |
| 778 | ngx_test_null(t, ngx_push_array(&lcf->types[key]), NGX_CONF_ERROR); |
| 779 | t->exten.len = args[i].len; |
| 780 | t->exten.data = args[i].data; |
| 781 | t->type.len = args[0].len; |
| 782 | t->type.data = args[0].data; |
| 783 | } |
| 784 | |
| 785 | return NGX_CONF_OK; |
| 786 | } |
| 787 | |
| 788 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 789 | static void *ngx_http_core_create_main_conf(ngx_conf_t *cf) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 790 | { |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 791 | ngx_http_core_main_conf_t *cmcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 792 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 793 | ngx_test_null(cmcf, |
Igor Sysoev | b3e73d8 | 2003-10-10 15:10:50 +0000 | [diff] [blame] | 794 | ngx_pcalloc(cf->pool, sizeof(ngx_http_core_main_conf_t)), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 795 | NGX_CONF_ERROR); |
| 796 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 797 | ngx_init_array(cmcf->servers, cf->pool, |
| 798 | 5, sizeof(ngx_http_core_srv_conf_t *), |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 799 | NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 800 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 801 | return cmcf; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 805 | static char *ngx_http_core_init_main_conf(ngx_conf_t *cf, void *conf) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 806 | { |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 807 | ngx_http_core_main_conf_t *cmcf = conf; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 808 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 809 | /* TODO: remove it if no directives */ |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 810 | |
| 811 | return NGX_CONF_OK; |
| 812 | } |
| 813 | |
| 814 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 815 | static void *ngx_http_core_create_srv_conf(ngx_conf_t *cf) |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 816 | { |
| 817 | ngx_http_core_srv_conf_t *cscf; |
| 818 | |
| 819 | ngx_test_null(cscf, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 820 | ngx_pcalloc(cf->pool, sizeof(ngx_http_core_srv_conf_t)), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 821 | NGX_CONF_ERROR); |
| 822 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 823 | ngx_init_array(cscf->locations, cf->pool, |
| 824 | 5, sizeof(void *), NGX_CONF_ERROR); |
| 825 | ngx_init_array(cscf->listen, cf->pool, 5, sizeof(ngx_http_listen_t), |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 826 | NGX_CONF_ERROR); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 827 | ngx_init_array(cscf->server_names, cf->pool, |
| 828 | 5, sizeof(ngx_http_server_name_t), NGX_CONF_ERROR); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 829 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 830 | cscf->connection_pool_size = NGX_CONF_UNSET; |
| 831 | cscf->post_accept_timeout = NGX_CONF_UNSET; |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 832 | cscf->request_pool_size = NGX_CONF_UNSET; |
| 833 | cscf->client_header_timeout = NGX_CONF_UNSET; |
| 834 | cscf->client_header_buffer_size = NGX_CONF_UNSET; |
| 835 | cscf->large_client_header = NGX_CONF_UNSET; |
| 836 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 837 | return cscf; |
| 838 | } |
| 839 | |
| 840 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 841 | static char *ngx_http_core_merge_srv_conf(ngx_conf_t *cf, |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 842 | void *parent, void *child) |
| 843 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 844 | ngx_http_core_srv_conf_t *prev = parent; |
| 845 | ngx_http_core_srv_conf_t *conf = child; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 846 | |
| 847 | ngx_http_listen_t *l; |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 848 | ngx_http_server_name_t *n; |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 849 | |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 850 | /* TODO: it does not merge, it inits only */ |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 851 | |
| 852 | if (conf->listen.nelts == 0) { |
| 853 | ngx_test_null(l, ngx_push_array(&conf->listen), NGX_CONF_ERROR); |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 854 | l->addr = INADDR_ANY; |
Igor Sysoev | 1c10462 | 2003-06-03 15:42:58 +0000 | [diff] [blame] | 855 | #if (WIN32) |
| 856 | l->port = 80; |
| 857 | #else |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 858 | /* STUB: getuid() should be cached */ |
| 859 | l->port = (getuid() == 0) ? 80 : 8000; |
Igor Sysoev | 1c10462 | 2003-06-03 15:42:58 +0000 | [diff] [blame] | 860 | #endif |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 861 | l->family = AF_INET; |
| 862 | } |
| 863 | |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 864 | if (conf->server_names.nelts == 0) { |
| 865 | ngx_test_null(n, ngx_push_array(&conf->server_names), NGX_CONF_ERROR); |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 866 | ngx_test_null(n->name.data, ngx_palloc(cf->pool, NGX_MAXHOSTNAMELEN), |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 867 | NGX_CONF_ERROR); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 868 | |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 869 | if (gethostname(n->name.data, NGX_MAXHOSTNAMELEN) == -1) { |
Igor Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 870 | ngx_conf_log_error(NGX_LOG_EMERG, cf, ngx_errno, |
| 871 | "gethostname() failed"); |
| 872 | return NGX_CONF_ERROR; |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 873 | } |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 874 | |
Igor Sysoev | ad22e01 | 2003-01-15 07:02:27 +0000 | [diff] [blame] | 875 | n->name.len = ngx_strlen(n->name.data); |
| 876 | n->core_srv_conf = conf; |
| 877 | } |
| 878 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 879 | ngx_conf_merge_size_value(conf->connection_pool_size, |
| 880 | prev->connection_pool_size, 16384); |
| 881 | ngx_conf_merge_msec_value(conf->post_accept_timeout, |
| 882 | prev->post_accept_timeout, 30000); |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 883 | ngx_conf_merge_size_value(conf->request_pool_size, |
| 884 | prev->request_pool_size, 16384); |
| 885 | ngx_conf_merge_msec_value(conf->client_header_timeout, |
| 886 | prev->client_header_timeout, 60000); |
| 887 | ngx_conf_merge_size_value(conf->client_header_buffer_size, |
| 888 | prev->client_header_buffer_size, 1024); |
| 889 | ngx_conf_merge_value(conf->large_client_header, |
| 890 | prev->large_client_header, 1); |
| 891 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 892 | return NGX_CONF_OK; |
| 893 | } |
| 894 | |
| 895 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 896 | static void *ngx_http_core_create_loc_conf(ngx_conf_t *cf) |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 897 | { |
| 898 | ngx_http_core_loc_conf_t *lcf; |
| 899 | |
| 900 | ngx_test_null(lcf, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 901 | ngx_pcalloc(cf->pool, sizeof(ngx_http_core_loc_conf_t)), |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 902 | NGX_CONF_ERROR); |
| 903 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 904 | /* set by ngx_pcalloc(): |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 905 | |
| 906 | lcf->doc_root.len = 0; |
| 907 | lcf->doc_root.data = NULL; |
| 908 | lcf->types = NULL; |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 909 | lcf->default_type.len = 0; |
| 910 | lcf->default_type.data = NULL; |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 911 | lcf->err_log = NULL; |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 912 | lcf->error_pages = NULL; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 913 | |
| 914 | */ |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 915 | |
Igor Sysoev | 2b0c76c | 2003-10-27 21:01:00 +0000 | [diff] [blame] | 916 | lcf->client_body_timeout = NGX_CONF_UNSET; |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 917 | lcf->sendfile = NGX_CONF_UNSET; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 918 | lcf->send_timeout = NGX_CONF_UNSET; |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 919 | lcf->send_lowat = NGX_CONF_UNSET; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 920 | lcf->discarded_buffer_size = NGX_CONF_UNSET; |
Igor Sysoev | fa73aac | 2003-05-21 13:28:21 +0000 | [diff] [blame] | 921 | lcf->keepalive_timeout = NGX_CONF_UNSET; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 922 | lcf->lingering_time = NGX_CONF_UNSET; |
| 923 | lcf->lingering_timeout = NGX_CONF_UNSET; |
| 924 | |
Igor Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 925 | lcf->msie_padding = NGX_CONF_UNSET; |
| 926 | |
Igor Sysoev | 4e9393a | 2003-01-09 05:36:00 +0000 | [diff] [blame] | 927 | return lcf; |
| 928 | } |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 929 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 930 | |
| 931 | static ngx_http_type_t default_types[] = { |
| 932 | { ngx_string("html"), ngx_string("text/html") }, |
| 933 | { ngx_string("gif"), ngx_string("image/gif") }, |
| 934 | { ngx_string("jpg"), ngx_string("image/jpeg") }, |
| 935 | { ngx_null_string, ngx_null_string } |
| 936 | }; |
| 937 | |
| 938 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 939 | static char *ngx_http_core_merge_loc_conf(ngx_conf_t *cf, |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 940 | void *parent, void *child) |
| 941 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 942 | ngx_http_core_loc_conf_t *prev = parent; |
| 943 | ngx_http_core_loc_conf_t *conf = child; |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 944 | |
| 945 | int i, key; |
| 946 | ngx_http_type_t *t; |
| 947 | |
Igor Sysoev | 7578ec9 | 2003-06-02 15:24:30 +0000 | [diff] [blame] | 948 | ngx_conf_merge_str_value(conf->doc_root, prev->doc_root, "html"); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 949 | |
| 950 | if (conf->types == NULL) { |
| 951 | if (prev->types) { |
| 952 | conf->types = prev->types; |
| 953 | |
| 954 | } else { |
| 955 | ngx_test_null(conf->types, |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 956 | ngx_palloc(cf->pool, NGX_HTTP_TYPES_HASH_PRIME |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 957 | * sizeof(ngx_array_t)), |
| 958 | NGX_CONF_ERROR); |
| 959 | |
| 960 | for (i = 0; i < NGX_HTTP_TYPES_HASH_PRIME; i++) { |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 961 | ngx_init_array(conf->types[i], cf->pool, |
| 962 | 5, sizeof(ngx_http_type_t), NGX_CONF_ERROR); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 963 | } |
| 964 | |
| 965 | for (i = 0; default_types[i].exten.len; i++) { |
| 966 | ngx_http_types_hash_key(key, default_types[i].exten); |
| 967 | |
| 968 | ngx_test_null(t, ngx_push_array(&conf->types[key]), |
| 969 | NGX_CONF_ERROR); |
| 970 | t->exten.len = default_types[i].exten.len; |
| 971 | t->exten.data = default_types[i].exten.data; |
| 972 | t->type.len = default_types[i].type.len; |
| 973 | t->type.data = default_types[i].type.data; |
| 974 | } |
| 975 | } |
| 976 | } |
| 977 | |
Igor Sysoev | 890fc96 | 2003-07-20 21:15:59 +0000 | [diff] [blame] | 978 | if (conf->err_log == NULL) { |
| 979 | if (prev->err_log) { |
| 980 | conf->err_log = prev->err_log; |
| 981 | } else { |
| 982 | conf->err_log = cf->cycle->log; |
| 983 | } |
| 984 | } |
| 985 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 986 | if (conf->error_pages == NULL && prev->error_pages) { |
| 987 | conf->error_pages = prev->error_pages; |
| 988 | } |
| 989 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 990 | ngx_conf_merge_str_value(conf->default_type, |
| 991 | prev->default_type, "text/plain"); |
| 992 | |
Igor Sysoev | 2b0c76c | 2003-10-27 21:01:00 +0000 | [diff] [blame] | 993 | ngx_conf_merge_msec_value(conf->client_body_timeout, |
| 994 | prev->client_body_timeout, 10000); |
Igor Sysoev | 5bf3d25 | 2003-10-22 07:05:29 +0000 | [diff] [blame] | 995 | ngx_conf_merge_value(conf->sendfile, prev->sendfile, 0); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 996 | ngx_conf_merge_msec_value(conf->send_timeout, prev->send_timeout, 10000); |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 997 | ngx_conf_merge_size_value(conf->send_lowat, prev->send_lowat, 0); |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 998 | ngx_conf_merge_size_value(conf->discarded_buffer_size, |
| 999 | prev->discarded_buffer_size, 1500); |
Igor Sysoev | 187fcd8 | 2003-05-23 11:53:01 +0000 | [diff] [blame] | 1000 | ngx_conf_merge_msec_value(conf->keepalive_timeout, |
| 1001 | prev->keepalive_timeout, 70000); |
| 1002 | ngx_conf_merge_msec_value(conf->lingering_time, |
| 1003 | prev->lingering_time, 30000); |
| 1004 | ngx_conf_merge_msec_value(conf->lingering_timeout, |
| 1005 | prev->lingering_timeout, 5000); |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1006 | |
Igor Sysoev | 12b4b00 | 2003-10-24 06:53:41 +0000 | [diff] [blame] | 1007 | ngx_conf_merge_value(conf->msie_padding, prev->msie_padding, 1); |
| 1008 | |
Igor Sysoev | e2a3154 | 2003-04-08 15:40:10 +0000 | [diff] [blame] | 1009 | return NGX_CONF_OK; |
| 1010 | } |
| 1011 | |
Igor Sysoev | 79a8048 | 2003-05-14 17:13:13 +0000 | [diff] [blame] | 1012 | |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1013 | static char *ngx_set_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1014 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1015 | ngx_http_core_srv_conf_t *scf = conf; |
Igor Sysoev | a983011 | 2003-05-19 16:39:14 +0000 | [diff] [blame] | 1016 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1017 | char *addr; |
Igor Sysoev | 1c13c66 | 2003-05-20 15:37:55 +0000 | [diff] [blame] | 1018 | u_int p; |
Igor Sysoev | 6253ca1 | 2003-05-27 12:18:54 +0000 | [diff] [blame] | 1019 | struct hostent *h; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1020 | ngx_str_t *args; |
| 1021 | ngx_http_listen_t *ls; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1022 | |
Igor Sysoev | 239baac | 2003-06-11 15:28:34 +0000 | [diff] [blame] | 1023 | /* TODO: check duplicate 'listen' directives, |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1024 | add resolved name to server names ??? */ |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1025 | |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1026 | ngx_test_null(ls, ngx_push_array(&scf->listen), NGX_CONF_ERROR); |
| 1027 | |
| 1028 | /* AF_INET only */ |
| 1029 | |
| 1030 | ls->family = AF_INET; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1031 | ls->flags = 0; |
Igor Sysoev | fe5cb6b | 2003-01-29 07:25:51 +0000 | [diff] [blame] | 1032 | ls->file_name = cf->conf_file->file.name; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1033 | ls->line = cf->conf_file->line; |
| 1034 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1035 | args = cf->args->elts; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1036 | addr = args[1].data; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1037 | |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1038 | for (p = 0; p < args[1].len; p++) { |
| 1039 | if (addr[p] == ':') { |
| 1040 | addr[p++] = '\0'; |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1041 | break; |
| 1042 | } |
| 1043 | } |
| 1044 | |
| 1045 | if (p == args[1].len) { |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1046 | /* no ":" in the "listen" */ |
Igor Sysoev | 6ddfbf0 | 2003-05-15 15:42:53 +0000 | [diff] [blame] | 1047 | p = 0; |
| 1048 | } |
| 1049 | |
| 1050 | ls->port = ngx_atoi(&addr[p], args[1].len - p); |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1051 | if (ls->port == NGX_ERROR && p == 0) { |
| 1052 | |
| 1053 | /* "listen host" */ |
| 1054 | ls->port = 80; |
| 1055 | |
| 1056 | } else if ((ls->port == NGX_ERROR && p != 0) /* "listen host:NONNUMBER" */ |
| 1057 | || (ls->port < 1 || ls->port > 65536)) { /* "listen 99999" */ |
| 1058 | |
Igor Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1059 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 1060 | "invalid port \"%s\" in \"%s\" directive, " |
| 1061 | "it must be a number between 1 and 65535", |
| 1062 | &addr[p], cmd->name.data); |
| 1063 | |
| 1064 | return NGX_CONF_ERROR; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1065 | |
| 1066 | } else if (p == 0) { |
| 1067 | ls->addr = INADDR_ANY; |
| 1068 | return NGX_CONF_OK; |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1069 | } |
| 1070 | |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1071 | ls->addr = inet_addr(addr); |
| 1072 | if (ls->addr == INADDR_NONE) { |
| 1073 | h = gethostbyname(addr); |
| 1074 | |
| 1075 | if (h == NULL || h->h_addr_list[0] == NULL) { |
Igor Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1076 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 1077 | "can not resolve host \"%s\" " |
| 1078 | "in \"%s\" directive", addr, cmd->name.data); |
| 1079 | return NGX_CONF_ERROR; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | ls->addr = *(u_int32_t *)(h->h_addr_list[0]); |
| 1083 | } |
| 1084 | |
| 1085 | return NGX_CONF_OK; |
| 1086 | } |
| 1087 | |
| 1088 | |
| 1089 | static char *ngx_set_server_name(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 1090 | { |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1091 | ngx_http_core_srv_conf_t *scf = conf; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1092 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1093 | int i; |
| 1094 | ngx_str_t *value; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1095 | ngx_http_server_name_t *sn; |
| 1096 | |
| 1097 | /* TODO: several names */ |
| 1098 | /* TODO: warn about duplicate 'server_name' directives */ |
| 1099 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1100 | value = cf->args->elts; |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1101 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1102 | for (i = 1; i < cf->args->nelts; i++) { |
| 1103 | if (value[i].len == 0) { |
Igor Sysoev | 8e1fbe6 | 2003-07-18 14:44:05 +0000 | [diff] [blame] | 1104 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 1105 | "server name \"%s\" is invalid " |
| 1106 | "in \"%s\" directive", |
| 1107 | value[i].data, cmd->name.data); |
| 1108 | return NGX_CONF_ERROR; |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1109 | } |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1110 | |
Igor Sysoev | aa3436c | 2003-05-30 14:27:59 +0000 | [diff] [blame] | 1111 | ngx_test_null(sn, ngx_push_array(&scf->server_names), NGX_CONF_ERROR); |
| 1112 | |
| 1113 | sn->name.len = value[i].len; |
| 1114 | sn->name.data = value[i].data; |
| 1115 | sn->core_srv_conf = scf; |
| 1116 | } |
Igor Sysoev | 1393325 | 2003-05-29 13:02:09 +0000 | [diff] [blame] | 1117 | |
Igor Sysoev | a19a85e | 2003-01-28 15:56:37 +0000 | [diff] [blame] | 1118 | return NGX_CONF_OK; |
| 1119 | } |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1120 | |
| 1121 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 1122 | static char *ngx_set_error_page(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 1123 | { |
| 1124 | ngx_http_core_loc_conf_t *lcf = conf; |
| 1125 | |
| 1126 | int i; |
| 1127 | ngx_str_t *value; |
| 1128 | ngx_http_err_page_t *err; |
| 1129 | |
| 1130 | if (lcf->error_pages == NULL) { |
| 1131 | lcf->error_pages = ngx_create_array(cf->pool, 5, |
| 1132 | sizeof(ngx_http_err_page_t)); |
| 1133 | if (lcf->error_pages == NULL) { |
| 1134 | return NGX_CONF_ERROR; |
| 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | value = cf->args->elts; |
| 1139 | |
| 1140 | for (i = 1; i < cf->args->nelts - 1; i++) { |
| 1141 | ngx_test_null(err, ngx_push_array(lcf->error_pages), NGX_CONF_ERROR); |
| 1142 | err->code = ngx_atoi(value[i].data, value[i].len); |
| 1143 | if (err->code == NGX_ERROR) { |
| 1144 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 1145 | "invalid value \"%s\"", value[i].data); |
| 1146 | return NGX_CONF_ERROR; |
| 1147 | } |
| 1148 | |
| 1149 | if (err->code < 400 || err->code > 599) { |
| 1150 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 1151 | "value \"%s\" must be between 400 and 599", |
| 1152 | value[i].data); |
| 1153 | return NGX_CONF_ERROR; |
| 1154 | } |
| 1155 | |
| 1156 | err->uri = value[cf->args->nelts - 1]; |
| 1157 | } |
| 1158 | |
| 1159 | return NGX_CONF_OK; |
| 1160 | } |
| 1161 | |
| 1162 | |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1163 | static char *ngx_set_error_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) |
| 1164 | { |
| 1165 | ngx_http_core_loc_conf_t *lcf = conf; |
| 1166 | |
| 1167 | ngx_str_t *value; |
| 1168 | |
| 1169 | value = cf->args->elts; |
| 1170 | |
Igor Sysoev | b8c367c | 2003-07-10 16:26:57 +0000 | [diff] [blame] | 1171 | ngx_test_null(lcf->err_log, |
| 1172 | ngx_log_create_errlog(cf->cycle, &value[1]), |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1173 | NGX_CONF_ERROR); |
| 1174 | |
Igor Sysoev | 9d63952 | 2003-07-07 06:11:50 +0000 | [diff] [blame] | 1175 | return NGX_CONF_OK; |
| 1176 | } |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1177 | |
| 1178 | |
| 1179 | static char *ngx_http_lowat_check(ngx_conf_t *cf, void *post, void *data) |
| 1180 | { |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1181 | #if (HAVE_LOWAT_EVENT) |
| 1182 | |
Igor Sysoev | 74e95c2 | 2003-11-09 20:03:38 +0000 | [diff] [blame] | 1183 | int *np = data; |
| 1184 | |
Igor Sysoev | b5faed2 | 2003-10-29 08:30:44 +0000 | [diff] [blame] | 1185 | if (*np >= ngx_freebsd_net_inet_tcp_sendspace) { |
| 1186 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
| 1187 | "\"send_lowat\" must be less than %d " |
| 1188 | "(sysctl net.inet.tcp.sendspace)", |
| 1189 | ngx_freebsd_net_inet_tcp_sendspace); |
| 1190 | |
| 1191 | return NGX_CONF_ERROR; |
| 1192 | } |
| 1193 | |
| 1194 | #else |
| 1195 | |
| 1196 | ngx_conf_log_error(NGX_LOG_WARN, cf, 0, |
| 1197 | "\"send_lowat\" is not supported, ignored"); |
| 1198 | |
| 1199 | #endif |
| 1200 | |
| 1201 | return NGX_CONF_OK; |
| 1202 | } |