nginxtra 1.8.1.12 → 1.10.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (238) hide show
  1. checksums.yaml +4 -4
  2. data/bin/nginxtra +1 -1
  3. data/bin/nginxtra_rails +1 -1
  4. data/lib/nginxtra/version.rb +1 -1
  5. data/vendor/nginx/CHANGES +363 -25
  6. data/vendor/nginx/CHANGES.ru +365 -21
  7. data/vendor/nginx/LICENSE +2 -2
  8. data/vendor/nginx/auto/cc/conf +32 -0
  9. data/vendor/nginx/auto/cc/gcc +1 -1
  10. data/vendor/nginx/auto/cc/icc +2 -2
  11. data/vendor/nginx/auto/cc/msvc +29 -8
  12. data/vendor/nginx/auto/cc/name +2 -25
  13. data/vendor/nginx/auto/cc/sunc +3 -0
  14. data/vendor/nginx/auto/endianness +7 -2
  15. data/vendor/nginx/auto/install +60 -26
  16. data/vendor/nginx/auto/lib/conf +4 -4
  17. data/vendor/nginx/auto/lib/geoip/conf +6 -1
  18. data/vendor/nginx/auto/lib/libgd/conf +6 -1
  19. data/vendor/nginx/auto/lib/libxslt/conf +11 -2
  20. data/vendor/nginx/auto/lib/make +1 -1
  21. data/vendor/nginx/auto/lib/md5/conf +2 -2
  22. data/vendor/nginx/auto/lib/md5/make +2 -2
  23. data/vendor/nginx/auto/lib/openssl/conf +52 -3
  24. data/vendor/nginx/auto/lib/openssl/make +1 -1
  25. data/vendor/nginx/auto/lib/pcre/conf +2 -2
  26. data/vendor/nginx/auto/lib/pcre/make +2 -2
  27. data/vendor/nginx/auto/lib/perl/conf +6 -3
  28. data/vendor/nginx/auto/lib/perl/make +4 -1
  29. data/vendor/nginx/auto/lib/sha1/conf +2 -2
  30. data/vendor/nginx/auto/lib/sha1/make +2 -2
  31. data/vendor/nginx/auto/lib/zlib/conf +2 -2
  32. data/vendor/nginx/auto/lib/zlib/make +2 -2
  33. data/vendor/nginx/auto/make +281 -16
  34. data/vendor/nginx/auto/module +122 -0
  35. data/vendor/nginx/auto/modules +909 -178
  36. data/vendor/nginx/auto/options +81 -19
  37. data/vendor/nginx/auto/os/conf +9 -0
  38. data/vendor/nginx/auto/os/darwin +3 -0
  39. data/vendor/nginx/auto/os/freebsd +0 -20
  40. data/vendor/nginx/auto/os/linux +0 -12
  41. data/vendor/nginx/auto/os/win32 +5 -1
  42. data/vendor/nginx/auto/sources +11 -311
  43. data/vendor/nginx/auto/summary +1 -0
  44. data/vendor/nginx/auto/types/sizeof +5 -3
  45. data/vendor/nginx/auto/types/typedef +9 -4
  46. data/vendor/nginx/auto/types/uintptr_t +7 -2
  47. data/vendor/nginx/auto/unix +72 -12
  48. data/vendor/nginx/conf/fastcgi.conf +1 -0
  49. data/vendor/nginx/conf/fastcgi_params +1 -0
  50. data/vendor/nginx/conf/scgi_params +1 -0
  51. data/vendor/nginx/conf/uwsgi_params +1 -0
  52. data/vendor/nginx/configure +1 -1
  53. data/vendor/nginx/contrib/vim/syntax/nginx.vim +2 -2
  54. data/vendor/nginx/man/nginx.8 +6 -2
  55. data/vendor/nginx/src/core/nginx.c +281 -114
  56. data/vendor/nginx/src/core/nginx.h +2 -2
  57. data/vendor/nginx/src/core/ngx_conf_file.c +54 -13
  58. data/vendor/nginx/src/core/ngx_conf_file.h +8 -52
  59. data/vendor/nginx/src/core/ngx_config.h +0 -5
  60. data/vendor/nginx/src/core/ngx_connection.c +270 -37
  61. data/vendor/nginx/src/core/ngx_connection.h +35 -12
  62. data/vendor/nginx/src/core/ngx_core.h +4 -0
  63. data/vendor/nginx/src/core/ngx_crypt.c +2 -2
  64. data/vendor/nginx/src/core/ngx_cycle.c +72 -25
  65. data/vendor/nginx/src/core/ngx_cycle.h +28 -39
  66. data/vendor/nginx/src/core/ngx_file.c +14 -5
  67. data/vendor/nginx/src/core/ngx_file.h +2 -0
  68. data/vendor/nginx/src/core/ngx_hash.c +13 -1
  69. data/vendor/nginx/src/core/ngx_inet.c +20 -18
  70. data/vendor/nginx/src/core/ngx_log.c +12 -12
  71. data/vendor/nginx/src/core/ngx_log.h +13 -6
  72. data/vendor/nginx/src/core/ngx_module.c +360 -0
  73. data/vendor/nginx/src/core/ngx_module.h +307 -0
  74. data/vendor/nginx/src/core/ngx_open_file_cache.c +2 -2
  75. data/vendor/nginx/src/core/ngx_output_chain.c +8 -4
  76. data/vendor/nginx/src/core/ngx_palloc.c +42 -44
  77. data/vendor/nginx/src/{http/ngx_http_parse_time.c → core/ngx_parse_time.c} +2 -3
  78. data/vendor/nginx/src/core/ngx_parse_time.h +22 -0
  79. data/vendor/nginx/src/core/ngx_proxy_protocol.c +50 -1
  80. data/vendor/nginx/src/core/ngx_proxy_protocol.h +3 -1
  81. data/vendor/nginx/src/core/ngx_regex.c +1 -38
  82. data/vendor/nginx/src/core/ngx_resolver.c +1814 -320
  83. data/vendor/nginx/src/core/ngx_resolver.h +67 -10
  84. data/vendor/nginx/src/core/ngx_rwlock.c +120 -0
  85. data/vendor/nginx/src/core/ngx_rwlock.h +21 -0
  86. data/vendor/nginx/src/core/ngx_slab.c +6 -5
  87. data/vendor/nginx/src/core/ngx_string.c +1 -1
  88. data/vendor/nginx/src/core/ngx_syslog.c +11 -3
  89. data/vendor/nginx/src/core/ngx_syslog.h +2 -1
  90. data/vendor/nginx/src/core/ngx_thread_pool.c +4 -0
  91. data/vendor/nginx/src/core/ngx_times.c +2 -2
  92. data/vendor/nginx/src/event/modules/ngx_devpoll_module.c +3 -1
  93. data/vendor/nginx/src/event/modules/ngx_epoll_module.c +5 -2
  94. data/vendor/nginx/src/event/modules/ngx_eventport_module.c +5 -5
  95. data/vendor/nginx/src/event/modules/ngx_kqueue_module.c +15 -8
  96. data/vendor/nginx/src/event/modules/ngx_poll_module.c +0 -10
  97. data/vendor/nginx/src/event/modules/ngx_select_module.c +0 -10
  98. data/vendor/nginx/src/event/ngx_event.c +60 -103
  99. data/vendor/nginx/src/event/ngx_event.h +22 -26
  100. data/vendor/nginx/src/event/ngx_event_accept.c +414 -88
  101. data/vendor/nginx/src/event/ngx_event_connect.c +27 -18
  102. data/vendor/nginx/src/event/ngx_event_connect.h +1 -0
  103. data/vendor/nginx/src/event/ngx_event_openssl.c +65 -25
  104. data/vendor/nginx/src/event/ngx_event_openssl.h +17 -0
  105. data/vendor/nginx/src/event/ngx_event_openssl_stapling.c +73 -7
  106. data/vendor/nginx/src/event/ngx_event_pipe.c +85 -27
  107. data/vendor/nginx/src/event/ngx_event_pipe.h +10 -0
  108. data/vendor/nginx/src/http/modules/ngx_http_auth_basic_module.c +1 -1
  109. data/vendor/nginx/src/http/modules/ngx_http_auth_request_module.c +2 -2
  110. data/vendor/nginx/src/http/modules/ngx_http_chunked_filter_module.c +2 -2
  111. data/vendor/nginx/src/http/modules/ngx_http_dav_module.c +6 -6
  112. data/vendor/nginx/src/http/modules/ngx_http_fastcgi_module.c +17 -11
  113. data/vendor/nginx/src/http/modules/ngx_http_gzip_filter_module.c +2 -2
  114. data/vendor/nginx/src/http/modules/ngx_http_headers_filter_module.c +9 -9
  115. data/vendor/nginx/src/http/modules/ngx_http_image_filter_module.c +2 -2
  116. data/vendor/nginx/src/http/modules/ngx_http_limit_conn_module.c +2 -2
  117. data/vendor/nginx/src/http/modules/ngx_http_limit_req_module.c +0 -7
  118. data/vendor/nginx/src/http/modules/ngx_http_map_module.c +6 -6
  119. data/vendor/nginx/src/http/modules/ngx_http_memcached_module.c +2 -1
  120. data/vendor/nginx/src/http/modules/ngx_http_mp4_module.c +13 -13
  121. data/vendor/nginx/src/http/modules/ngx_http_not_modified_filter_module.c +2 -2
  122. data/vendor/nginx/src/http/modules/ngx_http_proxy_module.c +26 -21
  123. data/vendor/nginx/src/http/modules/ngx_http_random_index_module.c +1 -1
  124. data/vendor/nginx/src/http/modules/ngx_http_range_filter_module.c +26 -8
  125. data/vendor/nginx/src/http/modules/ngx_http_realip_module.c +73 -3
  126. data/vendor/nginx/src/http/modules/ngx_http_referer_module.c +1 -1
  127. data/vendor/nginx/src/http/modules/ngx_http_rewrite_module.c +6 -6
  128. data/vendor/nginx/src/http/modules/ngx_http_scgi_module.c +5 -3
  129. data/vendor/nginx/src/http/modules/ngx_http_slice_filter_module.c +526 -0
  130. data/vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.c +7 -7
  131. data/vendor/nginx/src/http/modules/ngx_http_ssl_module.c +19 -16
  132. data/vendor/nginx/src/http/modules/ngx_http_static_module.c +1 -1
  133. data/vendor/nginx/src/http/modules/ngx_http_stub_status_module.c +1 -1
  134. data/vendor/nginx/src/http/modules/ngx_http_sub_filter_module.c +373 -173
  135. data/vendor/nginx/src/http/modules/ngx_http_upstream_hash_module.c +72 -46
  136. data/vendor/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c +18 -30
  137. data/vendor/nginx/src/http/modules/ngx_http_upstream_keepalive_module.c +50 -39
  138. data/vendor/nginx/src/http/modules/ngx_http_upstream_least_conn_module.c +38 -129
  139. data/vendor/nginx/src/http/modules/ngx_http_upstream_zone_module.c +246 -0
  140. data/vendor/nginx/src/http/modules/ngx_http_uwsgi_module.c +6 -5
  141. data/vendor/nginx/src/http/modules/perl/nginx.xs +9 -9
  142. data/vendor/nginx/src/http/ngx_http.c +46 -43
  143. data/vendor/nginx/src/http/ngx_http.h +4 -9
  144. data/vendor/nginx/src/http/ngx_http_cache.h +4 -0
  145. data/vendor/nginx/src/http/ngx_http_copy_filter_module.c +13 -5
  146. data/vendor/nginx/src/http/ngx_http_core_module.c +92 -91
  147. data/vendor/nginx/src/http/ngx_http_core_module.h +12 -8
  148. data/vendor/nginx/src/http/ngx_http_file_cache.c +61 -10
  149. data/vendor/nginx/src/http/ngx_http_request.c +37 -50
  150. data/vendor/nginx/src/http/ngx_http_request.h +10 -15
  151. data/vendor/nginx/src/http/ngx_http_request_body.c +64 -88
  152. data/vendor/nginx/src/http/ngx_http_script.c +3 -3
  153. data/vendor/nginx/src/http/ngx_http_special_response.c +1 -4
  154. data/vendor/nginx/src/http/ngx_http_upstream.c +245 -109
  155. data/vendor/nginx/src/http/ngx_http_upstream.h +11 -5
  156. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.c +212 -65
  157. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.h +66 -5
  158. data/vendor/nginx/src/http/ngx_http_variables.c +28 -15
  159. data/vendor/nginx/src/http/ngx_http_write_filter_module.c +1 -1
  160. data/vendor/nginx/src/http/v2/ngx_http_v2.c +4349 -0
  161. data/vendor/nginx/src/http/v2/ngx_http_v2.h +337 -0
  162. data/vendor/nginx/src/http/v2/ngx_http_v2_filter_module.c +1391 -0
  163. data/vendor/nginx/src/http/v2/ngx_http_v2_huff_decode.c +2714 -0
  164. data/vendor/nginx/src/http/v2/ngx_http_v2_huff_encode.c +254 -0
  165. data/vendor/nginx/src/http/v2/ngx_http_v2_module.c +469 -0
  166. data/vendor/nginx/src/http/{ngx_http_spdy_module.h → v2/ngx_http_v2_module.h} +10 -9
  167. data/vendor/nginx/src/http/v2/ngx_http_v2_table.c +349 -0
  168. data/vendor/nginx/src/mail/ngx_mail.c +49 -82
  169. data/vendor/nginx/src/mail/ngx_mail.h +16 -23
  170. data/vendor/nginx/src/mail/ngx_mail_auth_http_module.c +1 -1
  171. data/vendor/nginx/src/mail/ngx_mail_core_module.c +60 -34
  172. data/vendor/nginx/src/mail/ngx_mail_handler.c +17 -12
  173. data/vendor/nginx/src/mail/ngx_mail_proxy_module.c +1 -14
  174. data/vendor/nginx/src/mail/ngx_mail_smtp_handler.c +1 -1
  175. data/vendor/nginx/src/mail/ngx_mail_ssl_module.c +5 -5
  176. data/vendor/nginx/src/os/unix/ngx_atomic.h +10 -10
  177. data/vendor/nginx/src/os/unix/ngx_channel.h +4 -4
  178. data/vendor/nginx/src/os/unix/ngx_darwin_config.h +2 -0
  179. data/vendor/nginx/src/os/unix/ngx_darwin_init.c +1 -0
  180. data/vendor/nginx/src/os/unix/ngx_dlopen.c +28 -0
  181. data/vendor/nginx/src/os/unix/ngx_dlopen.h +31 -0
  182. data/vendor/nginx/src/os/unix/ngx_errno.h +1 -0
  183. data/vendor/nginx/src/os/unix/ngx_file_aio_read.c +1 -1
  184. data/vendor/nginx/src/os/unix/ngx_files.c +313 -80
  185. data/vendor/nginx/src/os/unix/ngx_files.h +5 -2
  186. data/vendor/nginx/src/os/unix/ngx_freebsd_config.h +3 -1
  187. data/vendor/nginx/src/os/unix/ngx_freebsd_init.c +1 -0
  188. data/vendor/nginx/src/os/unix/ngx_freebsd_sendfile_chain.c +13 -0
  189. data/vendor/nginx/src/os/unix/ngx_linux.h +0 -2
  190. data/vendor/nginx/src/os/unix/ngx_linux_aio_read.c +1 -1
  191. data/vendor/nginx/src/os/unix/ngx_linux_config.h +2 -6
  192. data/vendor/nginx/src/os/unix/ngx_linux_init.c +1 -33
  193. data/vendor/nginx/src/os/unix/ngx_linux_sendfile_chain.c +55 -12
  194. data/vendor/nginx/src/os/unix/ngx_os.h +3 -9
  195. data/vendor/nginx/src/os/unix/ngx_posix_config.h +14 -1
  196. data/vendor/nginx/src/os/unix/ngx_posix_init.c +2 -1
  197. data/vendor/nginx/src/os/unix/ngx_process.c +1 -1
  198. data/vendor/nginx/src/os/unix/ngx_process_cycle.c +25 -51
  199. data/vendor/nginx/src/os/unix/ngx_process_cycle.h +1 -0
  200. data/vendor/nginx/src/os/unix/ngx_readv_chain.c +24 -28
  201. data/vendor/nginx/src/os/unix/ngx_recv.c +30 -79
  202. data/vendor/nginx/src/os/unix/ngx_send.c +1 -1
  203. data/vendor/nginx/src/os/unix/ngx_setaffinity.c +14 -30
  204. data/vendor/nginx/src/os/unix/ngx_setaffinity.h +15 -1
  205. data/vendor/nginx/src/os/unix/ngx_solaris_config.h +2 -0
  206. data/vendor/nginx/src/os/unix/ngx_solaris_init.c +1 -0
  207. data/vendor/nginx/src/os/unix/ngx_solaris_sendfilev_chain.c +23 -0
  208. data/vendor/nginx/src/os/unix/ngx_sunpro_amd64.il +3 -3
  209. data/vendor/nginx/src/os/unix/ngx_sunpro_x86.il +3 -3
  210. data/vendor/nginx/src/os/unix/ngx_udp_recv.c +5 -48
  211. data/vendor/nginx/src/os/unix/ngx_udp_send.c +56 -0
  212. data/vendor/nginx/src/stream/ngx_stream.c +564 -0
  213. data/vendor/nginx/src/stream/ngx_stream.h +212 -0
  214. data/vendor/nginx/src/stream/ngx_stream_access_module.c +451 -0
  215. data/vendor/nginx/src/stream/ngx_stream_core_module.c +562 -0
  216. data/vendor/nginx/src/stream/ngx_stream_handler.c +344 -0
  217. data/vendor/nginx/src/stream/ngx_stream_limit_conn_module.c +632 -0
  218. data/vendor/nginx/src/stream/ngx_stream_proxy_module.c +1674 -0
  219. data/vendor/nginx/src/stream/ngx_stream_ssl_module.c +460 -0
  220. data/vendor/nginx/src/stream/ngx_stream_ssl_module.h +49 -0
  221. data/vendor/nginx/src/stream/ngx_stream_upstream.c +464 -0
  222. data/vendor/nginx/src/stream/ngx_stream_upstream.h +107 -0
  223. data/vendor/nginx/src/stream/ngx_stream_upstream_hash_module.c +656 -0
  224. data/vendor/nginx/src/stream/ngx_stream_upstream_least_conn_module.c +307 -0
  225. data/vendor/nginx/src/stream/ngx_stream_upstream_round_robin.c +702 -0
  226. data/vendor/nginx/src/stream/ngx_stream_upstream_round_robin.h +139 -0
  227. data/vendor/nginx/src/stream/ngx_stream_upstream_zone_module.c +242 -0
  228. metadata +39 -15
  229. data/vendor/nginx/src/event/modules/ngx_aio_module.c +0 -171
  230. data/vendor/nginx/src/event/modules/ngx_rtsig_module.c +0 -735
  231. data/vendor/nginx/src/http/ngx_http_spdy.c +0 -3701
  232. data/vendor/nginx/src/http/ngx_http_spdy.h +0 -261
  233. data/vendor/nginx/src/http/ngx_http_spdy_filter_module.c +0 -1222
  234. data/vendor/nginx/src/http/ngx_http_spdy_module.c +0 -408
  235. data/vendor/nginx/src/os/unix/ngx_aio_read.c +0 -109
  236. data/vendor/nginx/src/os/unix/ngx_aio_read_chain.c +0 -78
  237. data/vendor/nginx/src/os/unix/ngx_aio_write.c +0 -109
  238. data/vendor/nginx/src/os/unix/ngx_aio_write_chain.c +0 -100
@@ -7,6 +7,7 @@ help=no
7
7
 
8
8
  NGX_PREFIX=
9
9
  NGX_SBIN_PATH=
10
+ NGX_MODULES_PATH=
10
11
  NGX_CONF_PREFIX=
11
12
  NGX_CONF_PATH=
12
13
  NGX_ERROR_LOG_PATH=
@@ -30,7 +31,6 @@ NGX_RPATH=NO
30
31
  NGX_TEST_BUILD_DEVPOLL=NO
31
32
  NGX_TEST_BUILD_EVENTPORT=NO
32
33
  NGX_TEST_BUILD_EPOLL=NO
33
- NGX_TEST_BUILD_RTSIG=NO
34
34
  NGX_TEST_BUILD_SOLARIS_SENDFILEV=NO
35
35
 
36
36
  NGX_PLATFORM=
@@ -38,10 +38,8 @@ NGX_WINE=
38
38
 
39
39
  EVENT_FOUND=NO
40
40
 
41
- EVENT_RTSIG=NO
42
41
  EVENT_SELECT=NO
43
42
  EVENT_POLL=NO
44
- EVENT_AIO=NO
45
43
 
46
44
  USE_THREADS=NO
47
45
 
@@ -61,7 +59,7 @@ HTTP_CACHE=YES
61
59
  HTTP_CHARSET=YES
62
60
  HTTP_GZIP=YES
63
61
  HTTP_SSL=NO
64
- HTTP_SPDY=NO
62
+ HTTP_V2=NO
65
63
  HTTP_SSI=YES
66
64
  HTTP_POSTPONE=NO
67
65
  HTTP_REALIP=NO
@@ -74,6 +72,7 @@ HTTP_ACCESS=YES
74
72
  HTTP_AUTH_BASIC=YES
75
73
  HTTP_AUTH_REQUEST=NO
76
74
  HTTP_USERID=YES
75
+ HTTP_SLICE=NO
77
76
  HTTP_AUTOINDEX=YES
78
77
  HTTP_RANDOM_INDEX=NO
79
78
  HTTP_STATUS=NO
@@ -103,6 +102,7 @@ HTTP_UPSTREAM_HASH=YES
103
102
  HTTP_UPSTREAM_IP_HASH=YES
104
103
  HTTP_UPSTREAM_LEAST_CONN=YES
105
104
  HTTP_UPSTREAM_KEEPALIVE=YES
105
+ HTTP_UPSTREAM_ZONE=YES
106
106
 
107
107
  # STUB
108
108
  HTTP_STUB_STATUS=NO
@@ -113,7 +113,19 @@ MAIL_POP3=YES
113
113
  MAIL_IMAP=YES
114
114
  MAIL_SMTP=YES
115
115
 
116
+ STREAM=NO
117
+ STREAM_SSL=NO
118
+ STREAM_LIMIT_CONN=YES
119
+ STREAM_ACCESS=YES
120
+ STREAM_UPSTREAM_HASH=YES
121
+ STREAM_UPSTREAM_LEAST_CONN=YES
122
+ STREAM_UPSTREAM_ZONE=YES
123
+
124
+ DYNAMIC_MODULES=
125
+
116
126
  NGX_ADDONS=
127
+ NGX_ADDON_DEPS=
128
+ DYNAMIC_ADDONS=
117
129
 
118
130
  USE_PCRE=NO
119
131
  PCRE=NONE
@@ -144,6 +156,7 @@ NGX_PERL=perl
144
156
 
145
157
  USE_LIBXSLT=NO
146
158
  USE_LIBGD=NO
159
+ USE_GEOIP=NO
147
160
 
148
161
  NGX_GOOGLE_PERFTOOLS=NO
149
162
  NGX_CPP_TEST=NO
@@ -171,6 +184,7 @@ do
171
184
  --prefix=) NGX_PREFIX="!" ;;
172
185
  --prefix=*) NGX_PREFIX="$value" ;;
173
186
  --sbin-path=*) NGX_SBIN_PATH="$value" ;;
187
+ --modules-path=*) NGX_MODULES_PATH="$value" ;;
174
188
  --conf-path=*) NGX_CONF_PATH="$value" ;;
175
189
  --error-log-path=*) NGX_ERROR_LOG_PATH="$value";;
176
190
  --pid-path=*) NGX_PID_PATH="$value" ;;
@@ -183,12 +197,10 @@ do
183
197
  --build=*) NGX_BUILD="$value" ;;
184
198
  --builddir=*) NGX_OBJS="$value" ;;
185
199
 
186
- --with-rtsig_module) EVENT_RTSIG=YES ;;
187
200
  --with-select_module) EVENT_SELECT=YES ;;
188
201
  --without-select_module) EVENT_SELECT=NONE ;;
189
202
  --with-poll_module) EVENT_POLL=YES ;;
190
203
  --without-poll_module) EVENT_POLL=NONE ;;
191
- --with-aio_module) EVENT_AIO=YES ;;
192
204
 
193
205
  --with-threads) USE_THREADS=YES ;;
194
206
 
@@ -206,12 +218,17 @@ do
206
218
  --http-scgi-temp-path=*) NGX_HTTP_SCGI_TEMP_PATH="$value" ;;
207
219
 
208
220
  --with-http_ssl_module) HTTP_SSL=YES ;;
209
- --with-http_spdy_module) HTTP_SPDY=YES ;;
221
+ --with-http_v2_module) HTTP_V2=YES ;;
210
222
  --with-http_realip_module) HTTP_REALIP=YES ;;
211
223
  --with-http_addition_module) HTTP_ADDITION=YES ;;
212
224
  --with-http_xslt_module) HTTP_XSLT=YES ;;
225
+ --with-http_xslt_module=dynamic) HTTP_XSLT=DYNAMIC ;;
213
226
  --with-http_image_filter_module) HTTP_IMAGE_FILTER=YES ;;
227
+ --with-http_image_filter_module=dynamic)
228
+ HTTP_IMAGE_FILTER=DYNAMIC ;;
214
229
  --with-http_geoip_module) HTTP_GEOIP=YES ;;
230
+ --with-http_geoip_module=dynamic)
231
+ HTTP_GEOIP=DYNAMIC ;;
215
232
  --with-http_sub_module) HTTP_SUB=YES ;;
216
233
  --with-http_dav_module) HTTP_DAV=YES ;;
217
234
  --with-http_flv_module) HTTP_FLV=YES ;;
@@ -222,6 +239,7 @@ do
222
239
  --with-http_random_index_module) HTTP_RANDOM_INDEX=YES ;;
223
240
  --with-http_secure_link_module) HTTP_SECURE_LINK=YES ;;
224
241
  --with-http_degradation_module) HTTP_DEGRADATION=YES ;;
242
+ --with-http_slice_module) HTTP_SLICE=YES ;;
225
243
 
226
244
  --without-http_charset_module) HTTP_CHARSET=NO ;;
227
245
  --without-http_gzip_module) HTTP_GZIP=NO ;;
@@ -241,12 +259,6 @@ do
241
259
  --without-http_uwsgi_module) HTTP_UWSGI=NO ;;
242
260
  --without-http_scgi_module) HTTP_SCGI=NO ;;
243
261
  --without-http_memcached_module) HTTP_MEMCACHED=NO ;;
244
- --without-http_limit_zone_module)
245
- HTTP_LIMIT_CONN=NO
246
- NGX_POST_CONF_MSG="$NGX_POST_CONF_MSG
247
- $0: warning: the \"--without-http_limit_zone_module\" option is deprecated, \
248
- use the \"--without-http_limit_conn_module\" option instead"
249
- ;;
250
262
  --without-http_limit_conn_module) HTTP_LIMIT_CONN=NO ;;
251
263
  --without-http_limit_req_module) HTTP_LIMIT_REQ=NO ;;
252
264
  --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;;
@@ -256,8 +268,10 @@ use the \"--without-http_limit_conn_module\" option instead"
256
268
  --without-http_upstream_least_conn_module)
257
269
  HTTP_UPSTREAM_LEAST_CONN=NO ;;
258
270
  --without-http_upstream_keepalive_module) HTTP_UPSTREAM_KEEPALIVE=NO ;;
271
+ --without-http_upstream_zone_module) HTTP_UPSTREAM_ZONE=NO ;;
259
272
 
260
273
  --with-http_perl_module) HTTP_PERL=YES ;;
274
+ --with-http_perl_module=dynamic) HTTP_PERL=DYNAMIC ;;
261
275
  --with-perl_modules_path=*) NGX_PERL_MODULES="$value" ;;
262
276
  --with-perl=*) NGX_PERL="$value" ;;
263
277
 
@@ -265,18 +279,43 @@ use the \"--without-http_limit_conn_module\" option instead"
265
279
  --with-http_stub_status_module) HTTP_STUB_STATUS=YES ;;
266
280
 
267
281
  --with-mail) MAIL=YES ;;
282
+ --with-mail=dynamic) MAIL=DYNAMIC ;;
268
283
  --with-mail_ssl_module) MAIL_SSL=YES ;;
269
284
  # STUB
270
- --with-imap) MAIL=YES ;;
271
- --with-imap_ssl_module) MAIL_SSL=YES ;;
285
+ --with-imap)
286
+ MAIL=YES
287
+ NGX_POST_CONF_MSG="$NGX_POST_CONF_MSG
288
+ $0: warning: the \"--with-imap\" option is deprecated, \
289
+ use the \"--with-mail\" option instead"
290
+ ;;
291
+ --with-imap_ssl_module)
292
+ MAIL_SSL=YES
293
+ NGX_POST_CONF_MSG="$NGX_POST_CONF_MSG
294
+ $0: warning: the \"--with-imap_ssl_module\" option is deprecated, \
295
+ use the \"--with-mail_ssl_module\" option instead"
296
+ ;;
272
297
  --without-mail_pop3_module) MAIL_POP3=NO ;;
273
298
  --without-mail_imap_module) MAIL_IMAP=NO ;;
274
299
  --without-mail_smtp_module) MAIL_SMTP=NO ;;
275
300
 
301
+ --with-stream) STREAM=YES ;;
302
+ --with-stream=dynamic) STREAM=DYNAMIC ;;
303
+ --with-stream_ssl_module) STREAM_SSL=YES ;;
304
+ --without-stream_limit_conn_module)
305
+ STREAM_LIMIT_CONN=NO ;;
306
+ --without-stream_access_module) STREAM_ACCESS=NO ;;
307
+ --without-stream_upstream_hash_module)
308
+ STREAM_UPSTREAM_HASH=NO ;;
309
+ --without-stream_upstream_least_conn_module)
310
+ STREAM_UPSTREAM_LEAST_CONN=NO ;;
311
+ --without-stream_upstream_zone_module)
312
+ STREAM_UPSTREAM_ZONE=NO ;;
313
+
276
314
  --with-google_perftools_module) NGX_GOOGLE_PERFTOOLS=YES ;;
277
315
  --with-cpp_test_module) NGX_CPP_TEST=YES ;;
278
316
 
279
317
  --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
318
+ --add-dynamic-module=*) DYNAMIC_ADDONS="$DYNAMIC_ADDONS $value" ;;
280
319
 
281
320
  --with-cc=*) CC="$value" ;;
282
321
  --with-cpp=*) CPP="$value" ;;
@@ -312,7 +351,6 @@ use the \"--without-http_limit_conn_module\" option instead"
312
351
  --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;;
313
352
  --test-build-eventport) NGX_TEST_BUILD_EVENTPORT=YES ;;
314
353
  --test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;;
315
- --test-build-rtsig) NGX_TEST_BUILD_RTSIG=YES ;;
316
354
  --test-build-solaris-sendfilev) NGX_TEST_BUILD_SOLARIS_SENDFILEV=YES ;;
317
355
 
318
356
  *)
@@ -334,6 +372,7 @@ cat << END
334
372
 
335
373
  --prefix=PATH set installation prefix
336
374
  --sbin-path=PATH set nginx binary pathname
375
+ --modules-path=PATH set modules path
337
376
  --conf-path=PATH set nginx.conf pathname
338
377
  --error-log-path=PATH set error log pathname
339
378
  --pid-path=PATH set nginx.pid pathname
@@ -347,7 +386,6 @@ cat << END
347
386
  --build=NAME set build name
348
387
  --builddir=DIR set build directory
349
388
 
350
- --with-rtsig_module enable rtsig module
351
389
  --with-select_module enable select module
352
390
  --without-select_module disable select module
353
391
  --with-poll_module enable poll module
@@ -359,12 +397,16 @@ cat << END
359
397
  --with-ipv6 enable IPv6 support
360
398
 
361
399
  --with-http_ssl_module enable ngx_http_ssl_module
362
- --with-http_spdy_module enable ngx_http_spdy_module
400
+ --with-http_v2_module enable ngx_http_v2_module
363
401
  --with-http_realip_module enable ngx_http_realip_module
364
402
  --with-http_addition_module enable ngx_http_addition_module
365
403
  --with-http_xslt_module enable ngx_http_xslt_module
404
+ --with-http_xslt_module=dynamic enable dynamic ngx_http_xslt_module
366
405
  --with-http_image_filter_module enable ngx_http_image_filter_module
406
+ --with-http_image_filter_module=dynamic
407
+ enable dynamic ngx_http_image_filter_module
367
408
  --with-http_geoip_module enable ngx_http_geoip_module
409
+ --with-http_geoip_module=dynamic enable dynamic ngx_http_geoip_module
368
410
  --with-http_sub_module enable ngx_http_sub_module
369
411
  --with-http_dav_module enable ngx_http_dav_module
370
412
  --with-http_flv_module enable ngx_http_flv_module
@@ -375,6 +417,7 @@ cat << END
375
417
  --with-http_random_index_module enable ngx_http_random_index_module
376
418
  --with-http_secure_link_module enable ngx_http_secure_link_module
377
419
  --with-http_degradation_module enable ngx_http_degradation_module
420
+ --with-http_slice_module enable ngx_http_slice_module
378
421
  --with-http_stub_status_module enable ngx_http_stub_status_module
379
422
 
380
423
  --without-http_charset_module disable ngx_http_charset_module
@@ -406,8 +449,11 @@ cat << END
406
449
  disable ngx_http_upstream_least_conn_module
407
450
  --without-http_upstream_keepalive_module
408
451
  disable ngx_http_upstream_keepalive_module
452
+ --without-http_upstream_zone_module
453
+ disable ngx_http_upstream_zone_module
409
454
 
410
455
  --with-http_perl_module enable ngx_http_perl_module
456
+ --with-http_perl_module=dynamic enable dynamic ngx_http_perl_module
411
457
  --with-perl_modules_path=PATH set Perl modules path
412
458
  --with-perl=PATH set perl binary pathname
413
459
 
@@ -427,15 +473,29 @@ cat << END
427
473
  --without-http-cache disable HTTP cache
428
474
 
429
475
  --with-mail enable POP3/IMAP4/SMTP proxy module
476
+ --with-mail=dynamic enable dynamic POP3/IMAP4/SMTP proxy module
430
477
  --with-mail_ssl_module enable ngx_mail_ssl_module
431
478
  --without-mail_pop3_module disable ngx_mail_pop3_module
432
479
  --without-mail_imap_module disable ngx_mail_imap_module
433
480
  --without-mail_smtp_module disable ngx_mail_smtp_module
434
481
 
482
+ --with-stream enable TCP/UDP proxy module
483
+ --with-stream=dynamic enable dynamic TCP/UDP proxy module
484
+ --with-stream_ssl_module enable ngx_stream_ssl_module
485
+ --without-stream_limit_conn_module disable ngx_stream_limit_conn_module
486
+ --without-stream_access_module disable ngx_stream_access_module
487
+ --without-stream_upstream_hash_module
488
+ disable ngx_stream_upstream_hash_module
489
+ --without-stream_upstream_least_conn_module
490
+ disable ngx_stream_upstream_least_conn_module
491
+ --without-stream_upstream_zone_module
492
+ disable ngx_stream_upstream_zone_module
493
+
435
494
  --with-google_perftools_module enable ngx_google_perftools_module
436
495
  --with-cpp_test_module enable ngx_cpp_test_module
437
496
 
438
- --add-module=PATH enable an external module
497
+ --add-module=PATH enable external module
498
+ --add-dynamic-module=PATH enable dynamic external module
439
499
 
440
500
  --with-cc=PATH set C compiler pathname
441
501
  --with-cpp=PATH set C preprocessor pathname
@@ -497,6 +557,8 @@ if [ ".$NGX_PLATFORM" = ".win32" ]; then
497
557
  fi
498
558
 
499
559
 
560
+ NGX_SBIN_PATH=${NGX_SBIN_PATH:-sbin/nginx}
561
+ NGX_MODULES_PATH=${NGX_MODULES_PATH:-modules}
500
562
  NGX_CONF_PATH=${NGX_CONF_PATH:-conf/nginx.conf}
501
563
  NGX_CONF_PREFIX=`dirname $NGX_CONF_PATH`
502
564
  NGX_PID_PATH=${NGX_PID_PATH:-logs/nginx.pid}
@@ -60,6 +60,15 @@ case "$NGX_PLATFORM" in
60
60
  CORE_SRCS="$UNIX_SRCS"
61
61
  ;;
62
62
 
63
+ GNU:*)
64
+ # GNU Hurd
65
+ have=NGX_GNU_HURD . auto/have_headers
66
+ CORE_INCS="$UNIX_INCS"
67
+ CORE_DEPS="$UNIX_DEPS $POSIX_DEPS"
68
+ CORE_SRCS="$UNIX_SRCS"
69
+ CC_AUX_FLAGS="$CC_AUX_FLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64"
70
+ ;;
71
+
63
72
  *)
64
73
  CORE_INCS="$UNIX_INCS"
65
74
  CORE_DEPS="$UNIX_DEPS $POSIX_DEPS"
@@ -14,6 +14,9 @@ CORE_SRCS="$UNIX_SRCS $DARWIN_SRCS"
14
14
  ngx_spacer='
15
15
  '
16
16
 
17
+ MAIN_LINK=
18
+ MODULE_LINK="-shared -Wl,-undefined,dynamic_lookup"
19
+
17
20
  # kqueue
18
21
 
19
22
  echo " + kqueue found"
@@ -99,26 +99,6 @@ then
99
99
  fi
100
100
 
101
101
 
102
- if [ $EVENT_AIO = YES ]; then
103
- if [ \( $version -lt 500000 -a $version -ge 430000 \) \
104
- -o $version -ge 500014 ]
105
- then
106
- have=NGX_HAVE_AIO . auto/have
107
- EVENT_MODULES="$EVENT_MODULES $AIO_MODULE"
108
- CORE_SRCS="$CORE_SRCS $AIO_SRCS"
109
- else
110
-
111
- cat << END
112
-
113
- $0: error: the kqueue does not support AIO on this FreeBSD version
114
-
115
- END
116
-
117
- exit 1
118
- fi
119
- fi
120
-
121
-
122
102
  # cpuset_setaffinity()
123
103
 
124
104
  if [ $version -ge 701000 ]; then
@@ -26,18 +26,6 @@ version=$((`uname -r \
26
26
  version=${version:-0}
27
27
 
28
28
 
29
- # enable the rt signals on Linux between 2.2.19 and 2.6.17
30
-
31
- if [ \( $version -ge 131603 -a $version -lt 132626 \) -o $EVENT_RTSIG = YES ]
32
- then
33
- echo " + rt signals found"
34
- have=NGX_HAVE_RTSIG . auto/have
35
- EVENT_MODULES="$EVENT_MODULES $RTSIG_MODULE"
36
- CORE_SRCS="$CORE_SRCS $RTSIG_SRCS"
37
- EVENT_FOUND=YES
38
- fi
39
-
40
-
41
29
  # posix_fadvise64() had been implemented in 2.5.60
42
30
 
43
31
  if [ $version -lt 132412 ]; then
@@ -12,10 +12,15 @@ OS_CONFIG="$WIN32_CONFIG"
12
12
  NGX_ICONS="$NGX_WIN32_ICONS"
13
13
  SELECT_SRCS=$WIN32_SELECT_SRCS
14
14
 
15
+ ngx_pic_opt=
16
+
15
17
  case "$NGX_CC_NAME" in
16
18
 
17
19
  gcc)
18
20
  CORE_LIBS="$CORE_LIBS -ladvapi32 -lws2_32"
21
+ MAIN_LINK="$MAIN_LINK -Wl,--export-all-symbols"
22
+ MAIN_LINK="$MAIN_LINK -Wl,--out-implib=$NGX_OBJS/libnginx.a"
23
+ MODULE_LINK="-shared -L $NGX_OBJS -lnginx"
19
24
  ;;
20
25
 
21
26
  *)
@@ -36,5 +41,4 @@ if [ $NGX_IPV6 = YES ]; then
36
41
  have=NGX_HAVE_INET6 . auto/have
37
42
  fi
38
43
 
39
- have=NGX_HAVE_AIO . auto/have
40
44
  have=NGX_HAVE_IOCP . auto/have
@@ -19,6 +19,7 @@ CORE_DEPS="src/core/nginx.h \
19
19
  src/core/ngx_queue.h \
20
20
  src/core/ngx_string.h \
21
21
  src/core/ngx_parse.h \
22
+ src/core/ngx_parse_time.h \
22
23
  src/core/ngx_inet.h \
23
24
  src/core/ngx_file.h \
24
25
  src/core/ngx_crc.h \
@@ -28,12 +29,14 @@ CORE_DEPS="src/core/nginx.h \
28
29
  src/core/ngx_sha1.h \
29
30
  src/core/ngx_rbtree.h \
30
31
  src/core/ngx_radix_tree.h \
32
+ src/core/ngx_rwlock.h \
31
33
  src/core/ngx_slab.h \
32
34
  src/core/ngx_times.h \
33
35
  src/core/ngx_shmtx.h \
34
36
  src/core/ngx_connection.h \
35
37
  src/core/ngx_cycle.h \
36
38
  src/core/ngx_conf_file.h \
39
+ src/core/ngx_module.h \
37
40
  src/core/ngx_resolver.h \
38
41
  src/core/ngx_open_file_cache.h \
39
42
  src/core/ngx_crypt.h \
@@ -52,6 +55,7 @@ CORE_SRCS="src/core/nginx.c \
52
55
  src/core/ngx_output_chain.c \
53
56
  src/core/ngx_string.c \
54
57
  src/core/ngx_parse.c \
58
+ src/core/ngx_parse_time.c \
55
59
  src/core/ngx_inet.c \
56
60
  src/core/ngx_file.c \
57
61
  src/core/ngx_crc32.c \
@@ -65,8 +69,10 @@ CORE_SRCS="src/core/nginx.c \
65
69
  src/core/ngx_connection.c \
66
70
  src/core/ngx_cycle.c \
67
71
  src/core/ngx_spinlock.c \
72
+ src/core/ngx_rwlock.c \
68
73
  src/core/ngx_cpuinfo.c \
69
74
  src/core/ngx_conf_file.c \
75
+ src/core/ngx_module.c \
70
76
  src/core/ngx_resolver.c \
71
77
  src/core/ngx_open_file_cache.c \
72
78
  src/core/ngx_crypt.c \
@@ -74,17 +80,6 @@ CORE_SRCS="src/core/nginx.c \
74
80
  src/core/ngx_syslog.c"
75
81
 
76
82
 
77
- REGEX_MODULE=ngx_regex_module
78
- REGEX_DEPS=src/core/ngx_regex.h
79
- REGEX_SRCS=src/core/ngx_regex.c
80
-
81
-
82
- OPENSSL_MODULE=ngx_openssl_module
83
- OPENSSL_DEPS=src/event/ngx_event_openssl.h
84
- OPENSSL_SRCS="src/event/ngx_event_openssl.c \
85
- src/event/ngx_event_openssl_stapling.c"
86
-
87
-
88
83
  EVENT_MODULES="ngx_events_module ngx_event_core_module"
89
84
 
90
85
  EVENT_INCS="src/event src/event/modules"
@@ -122,19 +117,9 @@ EVENTPORT_SRCS=src/event/modules/ngx_eventport_module.c
122
117
  EPOLL_MODULE=ngx_epoll_module
123
118
  EPOLL_SRCS=src/event/modules/ngx_epoll_module.c
124
119
 
125
- RTSIG_MODULE=ngx_rtsig_module
126
- RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c
127
-
128
120
  IOCP_MODULE=ngx_iocp_module
129
121
  IOCP_SRCS=src/event/modules/ngx_iocp_module.c
130
122
 
131
- AIO_MODULE=ngx_aio_module
132
- AIO_SRCS="src/event/modules/ngx_aio_module.c \
133
- src/os/unix/ngx_aio_read.c \
134
- src/os/unix/ngx_aio_write.c \
135
- src/os/unix/ngx_aio_read_chain.c \
136
- src/os/unix/ngx_aio_write_chain.c"
137
-
138
123
  FILE_AIO_SRCS="src/os/unix/ngx_file_aio_read.c"
139
124
  LINUX_AIO_SRCS="src/os/unix/ngx_linux_aio_read.c"
140
125
 
@@ -156,6 +141,7 @@ UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
156
141
  src/os/unix/ngx_socket.h \
157
142
  src/os/unix/ngx_os.h \
158
143
  src/os/unix/ngx_user.h \
144
+ src/os/unix/ngx_dlopen.h \
159
145
  src/os/unix/ngx_process_cycle.h"
160
146
 
161
147
  # add to UNIX_DEPS
@@ -179,6 +165,7 @@ UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
179
165
  src/os/unix/ngx_udp_recv.c \
180
166
  src/os/unix/ngx_send.c \
181
167
  src/os/unix/ngx_writev_chain.c \
168
+ src/os/unix/ngx_udp_send.c \
182
169
  src/os/unix/ngx_channel.c \
183
170
  src/os/unix/ngx_shmem.c \
184
171
  src/os/unix/ngx_process.c \
@@ -187,6 +174,7 @@ UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
187
174
  src/os/unix/ngx_setproctitle.c \
188
175
  src/os/unix/ngx_posix_init.c \
189
176
  src/os/unix/ngx_user.c \
177
+ src/os/unix/ngx_dlopen.c \
190
178
  src/os/unix/ngx_process_cycle.c"
191
179
 
192
180
  POSIX_DEPS=src/os/unix/ngx_posix_config.h
@@ -232,6 +220,7 @@ WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
232
220
  src/os/win32/ngx_socket.h \
233
221
  src/os/win32/ngx_os.h \
234
222
  src/os/win32/ngx_user.h \
223
+ src/os/win32/ngx_dlopen.h \
235
224
  src/os/win32/ngx_process_cycle.h"
236
225
 
237
226
  WIN32_CONFIG=src/os/win32/ngx_win32_config.h
@@ -252,6 +241,7 @@ WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
252
241
  src/os/win32/ngx_wsasend_chain.c \
253
242
  src/os/win32/ngx_win32_init.c \
254
243
  src/os/win32/ngx_user.c \
244
+ src/os/win32/ngx_dlopen.c \
255
245
  src/os/win32/ngx_event_log.c \
256
246
  src/os/win32/ngx_process_cycle.c \
257
247
  src/event/ngx_event_acceptex.c"
@@ -260,294 +250,4 @@ NGX_WIN32_ICONS="src/os/win32/nginx.ico"
260
250
  NGX_WIN32_RC="src/os/win32/nginx.rc"
261
251
 
262
252
 
263
- # the http modules that have their logging formats
264
- # must be after ngx_http_log_module
265
-
266
- HTTP_MODULES="ngx_http_module \
267
- ngx_http_core_module \
268
- ngx_http_log_module \
269
- ngx_http_upstream_module"
270
-
271
- HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module"
272
- HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module"
273
-
274
- HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module
275
- HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module
276
-
277
- HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
278
- HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module
279
-
280
- HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module
281
- HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module
282
-
283
- HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
284
-
285
- HTTP_STATIC_MODULE=ngx_http_static_module
286
- HTTP_INDEX_MODULE=ngx_http_index_module
287
-
288
- HTTP_INCS="src/http src/http/modules"
289
-
290
- HTTP_DEPS="src/http/ngx_http.h \
291
- src/http/ngx_http_request.h \
292
- src/http/ngx_http_config.h \
293
- src/http/ngx_http_core_module.h \
294
- src/http/ngx_http_cache.h \
295
- src/http/ngx_http_variables.h \
296
- src/http/ngx_http_script.h \
297
- src/http/ngx_http_upstream.h \
298
- src/http/ngx_http_upstream_round_robin.h"
299
-
300
- HTTP_SRCS="src/http/ngx_http.c \
301
- src/http/ngx_http_core_module.c \
302
- src/http/ngx_http_special_response.c \
303
- src/http/ngx_http_request.c \
304
- src/http/ngx_http_parse.c \
305
- src/http/ngx_http_header_filter_module.c \
306
- src/http/ngx_http_write_filter_module.c \
307
- src/http/ngx_http_copy_filter_module.c \
308
- src/http/modules/ngx_http_log_module.c \
309
- src/http/ngx_http_request_body.c \
310
- src/http/ngx_http_variables.c \
311
- src/http/ngx_http_script.c \
312
- src/http/ngx_http_upstream.c \
313
- src/http/ngx_http_upstream_round_robin.c \
314
- src/http/ngx_http_parse_time.c \
315
- src/http/modules/ngx_http_static_module.c \
316
- src/http/modules/ngx_http_index_module.c \
317
- src/http/modules/ngx_http_chunked_filter_module.c \
318
- src/http/modules/ngx_http_range_filter_module.c \
319
- src/http/modules/ngx_http_headers_filter_module.c \
320
- src/http/modules/ngx_http_not_modified_filter_module.c"
321
-
322
- HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
323
-
324
253
  HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
325
-
326
-
327
- HTTP_SPDY_MODULE=ngx_http_spdy_module
328
- HTTP_SPDY_FILTER_MODULE=ngx_http_spdy_filter_module
329
- HTTP_SPDY_DEPS="src/http/ngx_http_spdy.h \
330
- src/http/ngx_http_spdy_module.h"
331
- HTTP_SPDY_SRCS="src/http/ngx_http_spdy.c \
332
- src/http/ngx_http_spdy_module.c \
333
- src/http/ngx_http_spdy_filter_module.c"
334
-
335
-
336
- HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
337
- HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c
338
-
339
-
340
- HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
341
- HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c
342
-
343
-
344
- HTTP_GUNZIP_FILTER_MODULE=ngx_http_gunzip_filter_module
345
- HTTP_GUNZIP_SRCS=src/http/modules/ngx_http_gunzip_filter_module.c
346
-
347
-
348
- HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
349
- HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h
350
- HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c
351
-
352
-
353
- HTTP_XSLT_FILTER_MODULE=ngx_http_xslt_filter_module
354
- HTTP_XSLT_SRCS=src/http/modules/ngx_http_xslt_filter_module.c
355
-
356
-
357
- HTTP_IMAGE_FILTER_MODULE=ngx_http_image_filter_module
358
- HTTP_IMAGE_SRCS=src/http/modules/ngx_http_image_filter_module.c
359
-
360
-
361
- HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module
362
- HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c
363
-
364
-
365
- HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
366
- HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c
367
-
368
-
369
- HTTP_REALIP_MODULE=ngx_http_realip_module
370
- HTTP_REALIP_SRCS=src/http/modules/ngx_http_realip_module.c
371
-
372
-
373
- HTTP_ADDITION_FILTER_MODULE=ngx_http_addition_filter_module
374
- HTTP_ADDITION_SRCS=src/http/modules/ngx_http_addition_filter_module.c
375
-
376
-
377
- HTTP_DAV_MODULE=ngx_http_dav_module
378
- HTTP_DAV_SRCS=src/http/modules/ngx_http_dav_module.c
379
-
380
-
381
- HTTP_ACCESS_MODULE=ngx_http_access_module
382
- HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c
383
-
384
-
385
- HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module
386
- HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c
387
-
388
-
389
- HTTP_AUTH_REQUEST_MODULE=ngx_http_auth_request_module
390
- HTTP_AUTH_REQUEST_SRCS=src/http/modules/ngx_http_auth_request_module.c
391
-
392
-
393
- HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module
394
- HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c
395
-
396
-
397
- HTTP_RANDOM_INDEX_MODULE=ngx_http_random_index_module
398
- HTTP_RANDOM_INDEX_SRCS=src/http/modules/ngx_http_random_index_module.c
399
-
400
-
401
- HTTP_STATUS_MODULE=ngx_http_status_module
402
- HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c
403
-
404
-
405
- HTTP_GEO_MODULE=ngx_http_geo_module
406
- HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c
407
-
408
-
409
- HTTP_GEOIP_MODULE=ngx_http_geoip_module
410
- HTTP_GEOIP_SRCS=src/http/modules/ngx_http_geoip_module.c
411
-
412
-
413
- HTTP_MAP_MODULE=ngx_http_map_module
414
- HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c
415
-
416
-
417
- HTTP_SPLIT_CLIENTS_MODULE=ngx_http_split_clients_module
418
- HTTP_SPLIT_CLIENTS_SRCS=src/http/modules/ngx_http_split_clients_module.c
419
-
420
-
421
- HTTP_REFERER_MODULE=ngx_http_referer_module
422
- HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c
423
-
424
-
425
- HTTP_REWRITE_MODULE=ngx_http_rewrite_module
426
- HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c
427
-
428
-
429
- HTTP_SSL_MODULE=ngx_http_ssl_module
430
- HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h
431
- HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c
432
-
433
-
434
- HTTP_PROXY_MODULE=ngx_http_proxy_module
435
- HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c
436
-
437
-
438
- HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module
439
- HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c
440
-
441
-
442
- HTTP_UWSGI_MODULE=ngx_http_uwsgi_module
443
- HTTP_UWSGI_SRCS=src/http/modules/ngx_http_uwsgi_module.c
444
-
445
-
446
- HTTP_SCGI_MODULE=ngx_http_scgi_module
447
- HTTP_SCGI_SRCS=src/http/modules/ngx_http_scgi_module.c
448
-
449
-
450
- HTTP_PERL_MODULE=ngx_http_perl_module
451
- HTTP_PERL_INCS=src/http/modules/perl
452
- HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h
453
- HTTP_PERL_SRCS=src/http/modules/perl/ngx_http_perl_module.c
454
-
455
-
456
- HTTP_MEMCACHED_MODULE=ngx_http_memcached_module
457
- HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c
458
-
459
-
460
- HTTP_LIMIT_CONN_MODULE=ngx_http_limit_conn_module
461
- HTTP_LIMIT_CONN_SRCS=src/http/modules/ngx_http_limit_conn_module.c
462
-
463
-
464
- HTTP_LIMIT_REQ_MODULE=ngx_http_limit_req_module
465
- HTTP_LIMIT_REQ_SRCS=src/http/modules/ngx_http_limit_req_module.c
466
-
467
-
468
- HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module
469
- HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c
470
-
471
-
472
- HTTP_BROWSER_MODULE=ngx_http_browser_module
473
- HTTP_BROWSER_SRCS=src/http/modules/ngx_http_browser_module.c
474
-
475
-
476
- HTTP_SECURE_LINK_MODULE=ngx_http_secure_link_module
477
- HTTP_SECURE_LINK_SRCS=src/http/modules/ngx_http_secure_link_module.c
478
-
479
-
480
- HTTP_DEGRADATION_MODULE=ngx_http_degradation_module
481
- HTTP_DEGRADATION_SRCS=src/http/modules/ngx_http_degradation_module.c
482
-
483
-
484
- HTTP_FLV_MODULE=ngx_http_flv_module
485
- HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c
486
-
487
-
488
- HTTP_MP4_MODULE=ngx_http_mp4_module
489
- HTTP_MP4_SRCS=src/http/modules/ngx_http_mp4_module.c
490
-
491
-
492
- HTTP_GZIP_STATIC_MODULE=ngx_http_gzip_static_module
493
- HTTP_GZIP_STATIC_SRCS=src/http/modules/ngx_http_gzip_static_module.c
494
-
495
-
496
- HTTP_UPSTREAM_HASH_MODULE=ngx_http_upstream_hash_module
497
- HTTP_UPSTREAM_HASH_SRCS=src/http/modules/ngx_http_upstream_hash_module.c
498
-
499
-
500
- HTTP_UPSTREAM_IP_HASH_MODULE=ngx_http_upstream_ip_hash_module
501
- HTTP_UPSTREAM_IP_HASH_SRCS=src/http/modules/ngx_http_upstream_ip_hash_module.c
502
-
503
-
504
- HTTP_UPSTREAM_LEAST_CONN_MODULE=ngx_http_upstream_least_conn_module
505
- HTTP_UPSTREAM_LEAST_CONN_SRCS=" \
506
- src/http/modules/ngx_http_upstream_least_conn_module.c"
507
-
508
-
509
- HTTP_UPSTREAM_KEEPALIVE_MODULE=ngx_http_upstream_keepalive_module
510
- HTTP_UPSTREAM_KEEPALIVE_SRCS=" \
511
- src/http/modules/ngx_http_upstream_keepalive_module.c"
512
-
513
-
514
- MAIL_INCS="src/mail"
515
-
516
- MAIL_DEPS="src/mail/ngx_mail.h"
517
-
518
- MAIL_MODULES="ngx_mail_module ngx_mail_core_module"
519
-
520
- MAIL_SRCS="src/mail/ngx_mail.c \
521
- src/mail/ngx_mail_core_module.c \
522
- src/mail/ngx_mail_handler.c \
523
- src/mail/ngx_mail_parse.c"
524
-
525
- MAIL_POP3_MODULE="ngx_mail_pop3_module"
526
- MAIL_POP3_DEPS="src/mail/ngx_mail_pop3_module.h"
527
- MAIL_POP3_SRCS="src/mail/ngx_mail_pop3_module.c \
528
- src/mail/ngx_mail_pop3_handler.c"
529
-
530
- MAIL_IMAP_MODULE="ngx_mail_imap_module"
531
- MAIL_IMAP_DEPS="src/mail/ngx_mail_imap_module.h"
532
- MAIL_IMAP_SRCS="src/mail/ngx_mail_imap_module.c \
533
- src/mail/ngx_mail_imap_handler.c"
534
-
535
- MAIL_SMTP_MODULE="ngx_mail_smtp_module"
536
- MAIL_SMTP_DEPS="src/mail/ngx_mail_smtp_module.h"
537
- MAIL_SMTP_SRCS="src/mail/ngx_mail_smtp_module.c \
538
- src/mail/ngx_mail_smtp_handler.c"
539
-
540
- MAIL_SSL_MODULE="ngx_mail_ssl_module"
541
- MAIL_SSL_DEPS="src/mail/ngx_mail_ssl_module.h"
542
- MAIL_SSL_SRCS="src/mail/ngx_mail_ssl_module.c"
543
-
544
- MAIL_AUTH_HTTP_MODULE="ngx_mail_auth_http_module"
545
- MAIL_AUTH_HTTP_SRCS="src/mail/ngx_mail_auth_http_module.c"
546
-
547
- MAIL_PROXY_MODULE="ngx_mail_proxy_module"
548
- MAIL_PROXY_SRCS="src/mail/ngx_mail_proxy_module.c"
549
-
550
- NGX_GOOGLE_PERFTOOLS_MODULE=ngx_google_perftools_module
551
- NGX_GOOGLE_PERFTOOLS_SRCS=src/misc/ngx_google_perftools_module.c
552
-
553
- NGX_CPP_TEST_SRCS=src/misc/ngx_cpp_test_module.cpp