nginxtra 1.4.7.9 → 1.6.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) 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 +286 -19
  6. data/vendor/nginx/CHANGES.ru +296 -22
  7. data/vendor/nginx/auto/cc/clang +4 -3
  8. data/vendor/nginx/auto/cc/conf +23 -0
  9. data/vendor/nginx/auto/cc/msvc +1 -0
  10. data/vendor/nginx/auto/cc/name +1 -1
  11. data/vendor/nginx/auto/cc/owc +4 -4
  12. data/vendor/nginx/auto/cc/sunc +1 -1
  13. data/vendor/nginx/auto/endianness +2 -2
  14. data/vendor/nginx/auto/feature +1 -1
  15. data/vendor/nginx/auto/include +1 -1
  16. data/vendor/nginx/auto/lib/libatomic/make +3 -1
  17. data/vendor/nginx/auto/lib/openssl/conf +4 -0
  18. data/vendor/nginx/auto/lib/openssl/make +1 -1
  19. data/vendor/nginx/auto/lib/pcre/conf +5 -0
  20. data/vendor/nginx/auto/lib/pcre/make +11 -11
  21. data/vendor/nginx/auto/lib/pcre/makefile.bcc +4 -3
  22. data/vendor/nginx/auto/lib/pcre/makefile.msvc +2 -1
  23. data/vendor/nginx/auto/lib/pcre/makefile.owc +2 -1
  24. data/vendor/nginx/auto/lib/perl/make +1 -0
  25. data/vendor/nginx/auto/lib/test +1 -1
  26. data/vendor/nginx/auto/lib/zlib/make +22 -1
  27. data/vendor/nginx/auto/modules +8 -0
  28. data/vendor/nginx/auto/options +3 -0
  29. data/vendor/nginx/auto/os/darwin +1 -1
  30. data/vendor/nginx/auto/os/linux +32 -0
  31. data/vendor/nginx/auto/os/win32 +12 -1
  32. data/vendor/nginx/auto/sources +8 -2
  33. data/vendor/nginx/auto/types/sizeof +1 -1
  34. data/vendor/nginx/auto/types/typedef +1 -1
  35. data/vendor/nginx/auto/types/uintptr_t +1 -1
  36. data/vendor/nginx/auto/unix +13 -1
  37. data/vendor/nginx/conf/mime.types +11 -2
  38. data/vendor/nginx/conf/nginx.conf +3 -4
  39. data/vendor/nginx/contrib/README +6 -0
  40. data/vendor/nginx/contrib/vim/ftdetect/nginx.vim +4 -0
  41. data/vendor/nginx/contrib/vim/indent/nginx.vim +11 -0
  42. data/vendor/nginx/contrib/vim/syntax/nginx.vim +703 -0
  43. data/vendor/nginx/src/core/nginx.c +2 -7
  44. data/vendor/nginx/src/core/nginx.h +2 -2
  45. data/vendor/nginx/src/core/ngx_conf_file.c +8 -88
  46. data/vendor/nginx/src/core/ngx_conf_file.h +3 -3
  47. data/vendor/nginx/src/core/ngx_config.h +2 -2
  48. data/vendor/nginx/src/core/ngx_connection.c +100 -29
  49. data/vendor/nginx/src/core/ngx_connection.h +11 -0
  50. data/vendor/nginx/src/core/ngx_core.h +1 -0
  51. data/vendor/nginx/src/core/ngx_cycle.c +23 -99
  52. data/vendor/nginx/src/core/ngx_cycle.h +2 -0
  53. data/vendor/nginx/src/core/ngx_file.c +100 -8
  54. data/vendor/nginx/src/core/ngx_file.h +3 -0
  55. data/vendor/nginx/src/core/ngx_hash.c +6 -9
  56. data/vendor/nginx/src/core/ngx_inet.c +93 -5
  57. data/vendor/nginx/src/core/ngx_inet.h +4 -2
  58. data/vendor/nginx/src/core/ngx_list.c +1 -9
  59. data/vendor/nginx/src/core/ngx_log.c +132 -30
  60. data/vendor/nginx/src/core/ngx_log.h +5 -2
  61. data/vendor/nginx/src/core/ngx_open_file_cache.c +67 -1
  62. data/vendor/nginx/src/core/ngx_palloc.c +5 -2
  63. data/vendor/nginx/src/core/ngx_proxy_protocol.c +91 -0
  64. data/vendor/nginx/src/core/ngx_proxy_protocol.h +23 -0
  65. data/vendor/nginx/src/core/ngx_resolver.c +1080 -285
  66. data/vendor/nginx/src/core/ngx_resolver.h +33 -3
  67. data/vendor/nginx/src/core/ngx_slab.c +7 -2
  68. data/vendor/nginx/src/core/ngx_slab.h +2 -0
  69. data/vendor/nginx/src/core/ngx_string.c +78 -13
  70. data/vendor/nginx/src/core/ngx_string.h +2 -0
  71. data/vendor/nginx/src/event/modules/ngx_devpoll_module.c +2 -2
  72. data/vendor/nginx/src/event/modules/ngx_epoll_module.c +13 -5
  73. data/vendor/nginx/src/event/modules/ngx_select_module.c +1 -1
  74. data/vendor/nginx/src/event/modules/ngx_win32_select_module.c +2 -2
  75. data/vendor/nginx/src/event/ngx_event.c +0 -1
  76. data/vendor/nginx/src/event/ngx_event.h +7 -6
  77. data/vendor/nginx/src/event/ngx_event_accept.c +6 -4
  78. data/vendor/nginx/src/event/ngx_event_connect.c +2 -2
  79. data/vendor/nginx/src/event/ngx_event_openssl.c +304 -13
  80. data/vendor/nginx/src/event/ngx_event_openssl.h +20 -1
  81. data/vendor/nginx/src/event/ngx_event_openssl_stapling.c +35 -23
  82. data/vendor/nginx/src/event/ngx_event_pipe.c +15 -30
  83. data/vendor/nginx/src/http/modules/ngx_http_access_module.c +115 -35
  84. data/vendor/nginx/src/http/modules/ngx_http_auth_basic_module.c +1 -1
  85. data/vendor/nginx/src/http/modules/ngx_http_auth_request_module.c +444 -0
  86. data/vendor/nginx/src/http/modules/ngx_http_autoindex_module.c +2 -1
  87. data/vendor/nginx/src/http/modules/ngx_http_charset_filter_module.c +1 -1
  88. data/vendor/nginx/src/http/modules/ngx_http_dav_module.c +1 -3
  89. data/vendor/nginx/src/http/modules/ngx_http_fastcgi_module.c +251 -36
  90. data/vendor/nginx/src/http/modules/ngx_http_gunzip_filter_module.c +9 -5
  91. data/vendor/nginx/src/http/modules/ngx_http_gzip_filter_module.c +5 -3
  92. data/vendor/nginx/src/http/modules/ngx_http_gzip_static_module.c +1 -1
  93. data/vendor/nginx/src/http/modules/ngx_http_headers_filter_module.c +4 -0
  94. data/vendor/nginx/src/http/modules/ngx_http_image_filter_module.c +8 -2
  95. data/vendor/nginx/src/http/modules/ngx_http_limit_req_module.c +5 -1
  96. data/vendor/nginx/src/http/modules/ngx_http_map_module.c +3 -3
  97. data/vendor/nginx/src/http/modules/ngx_http_memcached_module.c +21 -10
  98. data/vendor/nginx/src/http/modules/ngx_http_mp4_module.c +669 -197
  99. data/vendor/nginx/src/http/modules/ngx_http_proxy_module.c +93 -60
  100. data/vendor/nginx/src/http/modules/ngx_http_range_filter_module.c +13 -6
  101. data/vendor/nginx/src/http/modules/ngx_http_realip_module.c +20 -1
  102. data/vendor/nginx/src/http/modules/ngx_http_referer_module.c +132 -74
  103. data/vendor/nginx/src/http/modules/ngx_http_scgi_module.c +18 -12
  104. data/vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.c +22 -20
  105. data/vendor/nginx/src/http/modules/ngx_http_ssl_module.c +121 -3
  106. data/vendor/nginx/src/http/modules/ngx_http_ssl_module.h +5 -0
  107. data/vendor/nginx/src/http/modules/ngx_http_stub_status_module.c +3 -0
  108. data/vendor/nginx/src/http/modules/ngx_http_sub_filter_module.c +123 -91
  109. data/vendor/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c +29 -19
  110. data/vendor/nginx/src/http/modules/ngx_http_upstream_keepalive_module.c +2 -5
  111. data/vendor/nginx/src/http/modules/ngx_http_uwsgi_module.c +215 -19
  112. data/vendor/nginx/src/http/modules/ngx_http_xslt_filter_module.c +32 -6
  113. data/vendor/nginx/src/http/modules/perl/nginx.xs +4 -7
  114. data/vendor/nginx/src/http/modules/perl/ngx_http_perl_module.c +2 -2
  115. data/vendor/nginx/src/http/ngx_http.c +17 -7
  116. data/vendor/nginx/src/http/ngx_http_cache.h +4 -2
  117. data/vendor/nginx/src/http/ngx_http_copy_filter_module.c +4 -2
  118. data/vendor/nginx/src/http/ngx_http_core_module.c +63 -50
  119. data/vendor/nginx/src/http/ngx_http_core_module.h +5 -0
  120. data/vendor/nginx/src/http/ngx_http_file_cache.c +115 -3
  121. data/vendor/nginx/src/http/ngx_http_header_filter_module.c +9 -6
  122. data/vendor/nginx/src/http/ngx_http_parse.c +88 -10
  123. data/vendor/nginx/src/http/ngx_http_postpone_filter_module.c +2 -4
  124. data/vendor/nginx/src/http/ngx_http_request.c +116 -8
  125. data/vendor/nginx/src/http/ngx_http_request.h +5 -1
  126. data/vendor/nginx/src/http/ngx_http_request_body.c +7 -7
  127. data/vendor/nginx/src/http/ngx_http_script.c +6 -5
  128. data/vendor/nginx/src/http/ngx_http_spdy.c +889 -271
  129. data/vendor/nginx/src/http/ngx_http_spdy.h +51 -28
  130. data/vendor/nginx/src/http/ngx_http_spdy_filter_module.c +382 -167
  131. data/vendor/nginx/src/http/ngx_http_spdy_module.c +65 -8
  132. data/vendor/nginx/src/http/ngx_http_spdy_module.h +5 -0
  133. data/vendor/nginx/src/http/ngx_http_special_response.c +1 -1
  134. data/vendor/nginx/src/http/ngx_http_upstream.c +290 -114
  135. data/vendor/nginx/src/http/ngx_http_upstream.h +9 -5
  136. data/vendor/nginx/src/http/ngx_http_upstream_round_robin.c +32 -24
  137. data/vendor/nginx/src/http/ngx_http_variables.c +40 -6
  138. data/vendor/nginx/src/http/ngx_http_write_filter_module.c +12 -5
  139. data/vendor/nginx/src/mail/ngx_mail.c +4 -2
  140. data/vendor/nginx/src/mail/ngx_mail.h +2 -0
  141. data/vendor/nginx/src/mail/ngx_mail_auth_http_module.c +0 -1
  142. data/vendor/nginx/src/mail/ngx_mail_core_module.c +2 -1
  143. data/vendor/nginx/src/mail/ngx_mail_handler.c +17 -4
  144. data/vendor/nginx/src/mail/ngx_mail_parse.c +32 -2
  145. data/vendor/nginx/src/mail/ngx_mail_proxy_module.c +54 -7
  146. data/vendor/nginx/src/mail/ngx_mail_smtp_handler.c +50 -78
  147. data/vendor/nginx/src/mail/ngx_mail_ssl_module.c +48 -11
  148. data/vendor/nginx/src/mail/ngx_mail_ssl_module.h +3 -0
  149. data/vendor/nginx/src/os/unix/ngx_channel.c +3 -1
  150. data/vendor/nginx/src/os/unix/ngx_darwin_config.h +1 -0
  151. data/vendor/nginx/src/os/unix/ngx_darwin_init.c +1 -1
  152. data/vendor/nginx/src/os/unix/ngx_darwin_sendfile_chain.c +14 -16
  153. data/vendor/nginx/src/os/unix/ngx_errno.h +3 -0
  154. data/vendor/nginx/src/os/unix/ngx_files.h +10 -16
  155. data/vendor/nginx/src/os/unix/ngx_freebsd_config.h +6 -0
  156. data/vendor/nginx/src/os/unix/ngx_freebsd_init.c +1 -1
  157. data/vendor/nginx/src/os/unix/ngx_freebsd_rfork_thread.c +1 -1
  158. data/vendor/nginx/src/os/unix/ngx_freebsd_rfork_thread.h +2 -2
  159. data/vendor/nginx/src/os/unix/ngx_freebsd_sendfile_chain.c +17 -19
  160. data/vendor/nginx/src/os/unix/ngx_linux_config.h +8 -2
  161. data/vendor/nginx/src/os/unix/ngx_linux_sendfile_chain.c +20 -22
  162. data/vendor/nginx/src/os/unix/ngx_posix_config.h +1 -0
  163. data/vendor/nginx/src/os/unix/ngx_process.c +5 -0
  164. data/vendor/nginx/src/os/unix/ngx_process_cycle.c +15 -3
  165. data/vendor/nginx/src/os/unix/ngx_readv_chain.c +2 -1
  166. data/vendor/nginx/src/os/unix/ngx_recv.c +4 -1
  167. data/vendor/nginx/src/os/unix/ngx_solaris_config.h +1 -0
  168. data/vendor/nginx/src/os/unix/ngx_solaris_sendfilev_chain.c +14 -16
  169. metadata +8 -2
@@ -39,6 +39,7 @@
39
39
  #include <stddef.h> /* offsetof() */
40
40
  #include <stdio.h>
41
41
  #include <stdlib.h>
42
+ #include <ctype.h>
42
43
  #include <errno.h>
43
44
  #include <string.h>
44
45
  #include <signal.h>
@@ -291,9 +291,14 @@ ngx_init_signals(ngx_log_t *log)
291
291
  sa.sa_handler = sig->handler;
292
292
  sigemptyset(&sa.sa_mask);
293
293
  if (sigaction(sig->signo, &sa, NULL) == -1) {
294
+ #if (NGX_VALGRIND)
295
+ ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
296
+ "sigaction(%s) failed, ignored", sig->signame);
297
+ #else
294
298
  ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
295
299
  "sigaction(%s) failed", sig->signame);
296
300
  return NGX_ERROR;
301
+ #endif
297
302
  }
298
303
  }
299
304
 
@@ -355,6 +355,8 @@ ngx_start_worker_processes(ngx_cycle_t *cycle, ngx_int_t n, ngx_int_t type)
355
355
 
356
356
  ngx_log_error(NGX_LOG_NOTICE, cycle->log, 0, "start worker processes");
357
357
 
358
+ ngx_memzero(&ch, sizeof(ngx_channel_t));
359
+
358
360
  ch.command = NGX_CMD_OPEN_CHANNEL;
359
361
 
360
362
  for (i = 0; i < n; i++) {
@@ -401,6 +403,8 @@ ngx_start_cache_manager_processes(ngx_cycle_t *cycle, ngx_uint_t respawn)
401
403
  &ngx_cache_manager_ctx, "cache manager process",
402
404
  respawn ? NGX_PROCESS_JUST_RESPAWN : NGX_PROCESS_RESPAWN);
403
405
 
406
+ ngx_memzero(&ch, sizeof(ngx_channel_t));
407
+
404
408
  ch.command = NGX_CMD_OPEN_CHANNEL;
405
409
  ch.pid = ngx_processes[ngx_process_slot].pid;
406
410
  ch.slot = ngx_process_slot;
@@ -460,6 +464,8 @@ ngx_signal_worker_processes(ngx_cycle_t *cycle, int signo)
460
464
  ngx_err_t err;
461
465
  ngx_channel_t ch;
462
466
 
467
+ ngx_memzero(&ch, sizeof(ngx_channel_t));
468
+
463
469
  #if (NGX_BROKEN_SCM_RIGHTS)
464
470
 
465
471
  ch.command = 0;
@@ -530,7 +536,7 @@ ngx_signal_worker_processes(ngx_cycle_t *cycle, int signo)
530
536
  }
531
537
 
532
538
  ngx_log_debug2(NGX_LOG_DEBUG_CORE, cycle->log, 0,
533
- "kill (%P, %d)" , ngx_processes[i].pid, signo);
539
+ "kill (%P, %d)", ngx_processes[i].pid, signo);
534
540
 
535
541
  if (kill(ngx_processes[i].pid, signo) == -1) {
536
542
  err = ngx_errno;
@@ -561,6 +567,8 @@ ngx_reap_children(ngx_cycle_t *cycle)
561
567
  ngx_channel_t ch;
562
568
  ngx_core_conf_t *ccf;
563
569
 
570
+ ngx_memzero(&ch, sizeof(ngx_channel_t));
571
+
564
572
  ch.command = NGX_CMD_CLOSE_CHANNEL;
565
573
  ch.fd = -1;
566
574
 
@@ -706,6 +714,7 @@ ngx_master_process_exit(ngx_cycle_t *cycle)
706
714
 
707
715
  ngx_exit_log = *ngx_cycle->log;
708
716
  ngx_exit_log.file = &ngx_exit_log_file;
717
+ ngx_exit_log.next = NULL;
709
718
 
710
719
  ngx_exit_cycle.log = &ngx_exit_log;
711
720
  ngx_exit_cycle.files = ngx_cycle->files;
@@ -950,6 +959,8 @@ ngx_worker_process_init(ngx_cycle_t *cycle, ngx_int_t worker)
950
959
  "sigprocmask() failed");
951
960
  }
952
961
 
962
+ srandom((ngx_pid << 16) ^ ngx_time());
963
+
953
964
  /*
954
965
  * disable deleting previous events for the listening sockets because
955
966
  * in the worker processes there are no events at all at this point
@@ -1035,8 +1046,8 @@ ngx_worker_process_exit(ngx_cycle_t *cycle)
1035
1046
  && !c[i].read->resolver)
1036
1047
  {
1037
1048
  ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
1038
- "open socket #%d left in connection %ui",
1039
- c[i].fd, i);
1049
+ "*%uA open socket #%d left in connection %ui",
1050
+ c[i].number, c[i].fd, i);
1040
1051
  ngx_debug_quit = 1;
1041
1052
  }
1042
1053
  }
@@ -1058,6 +1069,7 @@ ngx_worker_process_exit(ngx_cycle_t *cycle)
1058
1069
 
1059
1070
  ngx_exit_log = *ngx_cycle->log;
1060
1071
  ngx_exit_log.file = &ngx_exit_log_file;
1072
+ ngx_exit_log.next = NULL;
1061
1073
 
1062
1074
  ngx_exit_cycle.log = &ngx_exit_log;
1063
1075
  ngx_exit_cycle.files = ngx_cycle->files;
@@ -129,6 +129,7 @@ ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *chain)
129
129
  "%d available bytes", rev->available);
130
130
  #endif
131
131
 
132
+ rev->ready = 0;
132
133
  rev->eof = 1;
133
134
  rev->available = 0;
134
135
  }
@@ -136,7 +137,7 @@ ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *chain)
136
137
  return n;
137
138
  }
138
139
 
139
- if (n < size) {
140
+ if (n < size && !(ngx_event_flags & NGX_USE_GREEDY_EVENT)) {
140
141
  rev->ready = 0;
141
142
  }
142
143
 
@@ -80,6 +80,7 @@ ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size)
80
80
  * even if kqueue reported about available data
81
81
  */
82
82
 
83
+ rev->ready = 0;
83
84
  rev->eof = 1;
84
85
  rev->available = 0;
85
86
  }
@@ -87,7 +88,9 @@ ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size)
87
88
  return n;
88
89
  }
89
90
 
90
- if ((size_t) n < size) {
91
+ if ((size_t) n < size
92
+ && !(ngx_event_flags & NGX_USE_GREEDY_EVENT))
93
+ {
91
94
  rev->ready = 0;
92
95
  }
93
96
 
@@ -22,6 +22,7 @@
22
22
  #include <stddef.h> /* offsetof() */
23
23
  #include <stdio.h>
24
24
  #include <stdlib.h>
25
+ #include <ctype.h>
25
26
  #include <errno.h>
26
27
  #include <string.h>
27
28
  #include <signal.h>
@@ -207,9 +207,9 @@ ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
207
207
 
208
208
  c->sent += sent;
209
209
 
210
- for (cl = in; cl; cl = cl->next) {
210
+ for ( /* void */ ; in; in = in->next) {
211
211
 
212
- if (ngx_buf_special(cl->buf)) {
212
+ if (ngx_buf_special(in->buf)) {
213
213
  continue;
214
214
  }
215
215
 
@@ -217,28 +217,28 @@ ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
217
217
  break;
218
218
  }
219
219
 
220
- size = ngx_buf_size(cl->buf);
220
+ size = ngx_buf_size(in->buf);
221
221
 
222
222
  if ((off_t) sent >= size) {
223
223
  sent = (size_t) ((off_t) sent - size);
224
224
 
225
- if (ngx_buf_in_memory(cl->buf)) {
226
- cl->buf->pos = cl->buf->last;
225
+ if (ngx_buf_in_memory(in->buf)) {
226
+ in->buf->pos = in->buf->last;
227
227
  }
228
228
 
229
- if (cl->buf->in_file) {
230
- cl->buf->file_pos = cl->buf->file_last;
229
+ if (in->buf->in_file) {
230
+ in->buf->file_pos = in->buf->file_last;
231
231
  }
232
232
 
233
233
  continue;
234
234
  }
235
235
 
236
- if (ngx_buf_in_memory(cl->buf)) {
237
- cl->buf->pos += sent;
236
+ if (ngx_buf_in_memory(in->buf)) {
237
+ in->buf->pos += sent;
238
238
  }
239
239
 
240
- if (cl->buf->in_file) {
241
- cl->buf->file_pos += sent;
240
+ if (in->buf->in_file) {
241
+ in->buf->file_pos += sent;
242
242
  }
243
243
 
244
244
  break;
@@ -250,13 +250,11 @@ ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
250
250
 
251
251
  if (!complete) {
252
252
  wev->ready = 0;
253
- return cl;
253
+ return in;
254
254
  }
255
255
 
256
- if (send >= limit || cl == NULL) {
257
- return cl;
256
+ if (send >= limit || in == NULL) {
257
+ return in;
258
258
  }
259
-
260
- in = cl;
261
259
  }
262
260
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nginxtra
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.7.9
4
+ version: 1.6.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Virata-Stone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-19 00:00:00.000000000 Z
11
+ date: 2014-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -151,6 +151,9 @@ files:
151
151
  - vendor/nginx/contrib/unicode2nginx/koi-utf
152
152
  - vendor/nginx/contrib/unicode2nginx/unicode-to-nginx.pl
153
153
  - vendor/nginx/contrib/unicode2nginx/win-utf
154
+ - vendor/nginx/contrib/vim/ftdetect/nginx.vim
155
+ - vendor/nginx/contrib/vim/indent/nginx.vim
156
+ - vendor/nginx/contrib/vim/syntax/nginx.vim
154
157
  - vendor/nginx/html/50x.html
155
158
  - vendor/nginx/html/index.html
156
159
  - vendor/nginx/man/nginx.8
@@ -195,6 +198,8 @@ files:
195
198
  - vendor/nginx/src/core/ngx_palloc.h
196
199
  - vendor/nginx/src/core/ngx_parse.c
197
200
  - vendor/nginx/src/core/ngx_parse.h
201
+ - vendor/nginx/src/core/ngx_proxy_protocol.c
202
+ - vendor/nginx/src/core/ngx_proxy_protocol.h
198
203
  - vendor/nginx/src/core/ngx_queue.c
199
204
  - vendor/nginx/src/core/ngx_queue.h
200
205
  - vendor/nginx/src/core/ngx_radix_tree.c
@@ -244,6 +249,7 @@ files:
244
249
  - vendor/nginx/src/http/modules/ngx_http_access_module.c
245
250
  - vendor/nginx/src/http/modules/ngx_http_addition_filter_module.c
246
251
  - vendor/nginx/src/http/modules/ngx_http_auth_basic_module.c
252
+ - vendor/nginx/src/http/modules/ngx_http_auth_request_module.c
247
253
  - vendor/nginx/src/http/modules/ngx_http_autoindex_module.c
248
254
  - vendor/nginx/src/http/modules/ngx_http_browser_module.c
249
255
  - vendor/nginx/src/http/modules/ngx_http_charset_filter_module.c