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
@@ -36,7 +36,8 @@ CORE_DEPS="src/core/nginx.h \
36
36
  src/core/ngx_conf_file.h \
37
37
  src/core/ngx_resolver.h \
38
38
  src/core/ngx_open_file_cache.h \
39
- src/core/ngx_crypt.h"
39
+ src/core/ngx_crypt.h \
40
+ src/core/ngx_proxy_protocol.h"
40
41
 
41
42
 
42
43
  CORE_SRCS="src/core/nginx.c \
@@ -67,7 +68,8 @@ CORE_SRCS="src/core/nginx.c \
67
68
  src/core/ngx_conf_file.c \
68
69
  src/core/ngx_resolver.c \
69
70
  src/core/ngx_open_file_cache.c \
70
- src/core/ngx_crypt.c"
71
+ src/core/ngx_crypt.c \
72
+ src/core/ngx_proxy_protocol.c"
71
73
 
72
74
 
73
75
  REGEX_MODULE=ngx_regex_module
@@ -386,6 +388,10 @@ HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module
386
388
  HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c
387
389
 
388
390
 
391
+ HTTP_AUTH_REQUEST_MODULE=ngx_http_auth_request_module
392
+ HTTP_AUTH_REQUEST_SRCS=src/http/modules/ngx_http_auth_request_module.c
393
+
394
+
389
395
  HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module
390
396
  HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c
391
397
 
@@ -45,7 +45,7 @@ if [ -x $NGX_AUTOTEST ]; then
45
45
  fi
46
46
 
47
47
 
48
- rm -f $NGX_AUTOTEST
48
+ rm -rf $NGX_AUTOTEST*
49
49
 
50
50
 
51
51
  case $ngx_size in
@@ -49,7 +49,7 @@ END
49
49
  fi
50
50
  fi
51
51
 
52
- rm -f $NGX_AUTOTEST
52
+ rm -rf $NGX_AUTOTEST*
53
53
 
54
54
  if [ $ngx_found = no ]; then
55
55
  echo $ngx_n " $ngx_try not found$ngx_c"
@@ -33,7 +33,7 @@ else
33
33
  echo $ngx_n " uintptr_t not found" $ngx_c
34
34
  fi
35
35
 
36
- rm $NGX_AUTOTEST*
36
+ rm -rf $NGX_AUTOTEST*
37
37
 
38
38
 
39
39
  if [ $found = no ]; then
@@ -330,7 +330,7 @@ ngx_feature_test="setsockopt(0, IPPROTO_TCP, TCP_DEFER_ACCEPT, NULL, 0)"
330
330
  . auto/feature
331
331
 
332
332
 
333
- ngx_feature="TCP_KEEPIDLE, TCP_KEEPINTVL, TCP_KEEPCNT"
333
+ ngx_feature="TCP_KEEPIDLE"
334
334
  ngx_feature_name="NGX_HAVE_KEEPALIVE_TUNABLE"
335
335
  ngx_feature_run=no
336
336
  ngx_feature_incs="#include <sys/socket.h>
@@ -344,6 +344,18 @@ ngx_feature_test="setsockopt(0, IPPROTO_TCP, TCP_KEEPIDLE, NULL, 0);
344
344
  . auto/feature
345
345
 
346
346
 
347
+ ngx_feature="TCP_FASTOPEN"
348
+ ngx_feature_name="NGX_HAVE_TCP_FASTOPEN"
349
+ ngx_feature_run=no
350
+ ngx_feature_incs="#include <sys/socket.h>
351
+ #include <netinet/in.h>
352
+ #include <netinet/tcp.h>"
353
+ ngx_feature_path=
354
+ ngx_feature_libs=
355
+ ngx_feature_test="setsockopt(0, IPPROTO_TCP, TCP_FASTOPEN, NULL, 0)"
356
+ . auto/feature
357
+
358
+
347
359
  ngx_feature="TCP_INFO"
348
360
  ngx_feature_name="NGX_HAVE_TCP_INFO"
349
361
  ngx_feature_run=no
@@ -5,7 +5,7 @@ types {
5
5
  text/xml xml;
6
6
  image/gif gif;
7
7
  image/jpeg jpeg jpg;
8
- application/x-javascript js;
8
+ application/javascript js;
9
9
  application/atom+xml atom;
10
10
  application/rss+xml rss;
11
11
 
@@ -24,13 +24,17 @@ types {
24
24
  image/svg+xml svg svgz;
25
25
  image/webp webp;
26
26
 
27
+ application/font-woff woff;
27
28
  application/java-archive jar war ear;
29
+ application/json json;
28
30
  application/mac-binhex40 hqx;
29
31
  application/msword doc;
30
32
  application/pdf pdf;
31
33
  application/postscript ps eps ai;
32
34
  application/rtf rtf;
35
+ application/vnd.apple.mpegurl m3u8;
33
36
  application/vnd.ms-excel xls;
37
+ application/vnd.ms-fontobject eot;
34
38
  application/vnd.ms-powerpoint ppt;
35
39
  application/vnd.wap.wmlc wmlc;
36
40
  application/vnd.google-earth.kml+xml kml;
@@ -51,15 +55,19 @@ types {
51
55
  application/x-x509-ca-cert der pem crt;
52
56
  application/x-xpinstall xpi;
53
57
  application/xhtml+xml xhtml;
58
+ application/xspf+xml xspf;
54
59
  application/zip zip;
55
60
 
56
61
  application/octet-stream bin exe dll;
57
62
  application/octet-stream deb;
58
63
  application/octet-stream dmg;
59
- application/octet-stream eot;
60
64
  application/octet-stream iso img;
61
65
  application/octet-stream msi msp msm;
62
66
 
67
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
68
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
69
+ application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
70
+
63
71
  audio/midi mid midi kar;
64
72
  audio/mpeg mp3;
65
73
  audio/ogg ogg;
@@ -67,6 +75,7 @@ types {
67
75
  audio/x-realaudio ra;
68
76
 
69
77
  video/3gpp 3gpp 3gp;
78
+ video/mp2t ts;
70
79
  video/mp4 mp4;
71
80
  video/mpeg mpeg mpg;
72
81
  video/quicktime mov;
@@ -96,18 +96,17 @@ http {
96
96
  # HTTPS server
97
97
  #
98
98
  #server {
99
- # listen 443;
99
+ # listen 443 ssl;
100
100
  # server_name localhost;
101
101
 
102
- # ssl on;
103
102
  # ssl_certificate cert.pem;
104
103
  # ssl_certificate_key cert.key;
105
104
 
105
+ # ssl_session_cache shared:SSL:1m;
106
106
  # ssl_session_timeout 5m;
107
107
 
108
- # ssl_protocols SSLv2 SSLv3 TLSv1;
109
108
  # ssl_ciphers HIGH:!aNULL:!MD5;
110
- # ssl_prefer_server_ciphers on;
109
+ # ssl_prefer_server_ciphers on;
111
110
 
112
111
  # location / {
113
112
  # root html;
@@ -13,3 +13,9 @@ unicode2nginx by Maxim Dounin
13
13
  configuration file format.
14
14
  Two generated full maps for windows-1251 and koi8-r.
15
15
 
16
+
17
+ vim by Evan Miller
18
+
19
+ Syntax highlighting of nginx configuration for vim, to be
20
+ placed into ~/.vim/.
21
+
@@ -0,0 +1,4 @@
1
+ au BufRead,BufNewFile *.nginx set ft=nginx
2
+ au BufRead,BufNewFile */etc/nginx/* set ft=nginx
3
+ au BufRead,BufNewFile */usr/local/nginx/conf/* set ft=nginx
4
+ au BufRead,BufNewFile nginx.conf set ft=nginx
@@ -0,0 +1,11 @@
1
+ if exists("b:did_indent")
2
+ finish
3
+ endif
4
+ let b:did_indent = 1
5
+
6
+ setlocal indentexpr=
7
+
8
+ " cindent actually works for nginx' simple file structure
9
+ setlocal cindent
10
+ " Just make sure that the comments are not reset as defs would be.
11
+ setlocal cinkeys-=0#
@@ -0,0 +1,703 @@
1
+ " Vim syntax file
2
+ " Language: nginx.conf
3
+
4
+ if exists("b:current_syntax")
5
+ finish
6
+ end
7
+
8
+ setlocal iskeyword+=.
9
+ setlocal iskeyword+=/
10
+ setlocal iskeyword+=:
11
+
12
+ syn match ngxVariable '\$\(\w\+\|{\w\+}\)'
13
+ syn match ngxVariableBlock '\$\(\w\+\|{\w\+}\)' contained
14
+ syn match ngxVariableString '\$\(\w\+\|{\w\+}\)' contained
15
+ syn region ngxBlock start=+^+ end=+{+ skip=+\${+ contains=ngxComment,ngxDirectiveBlock,ngxVariableBlock,ngxString oneline
16
+ syn region ngxString start=+\z(["']\)+ end=+\z1+ skip=+\\\\\|\\\z1+ contains=ngxVariableString
17
+ syn match ngxComment ' *#.*$'
18
+
19
+ syn keyword ngxBoolean on
20
+ syn keyword ngxBoolean off
21
+
22
+ syn keyword ngxDirectiveBlock http contained
23
+ syn keyword ngxDirectiveBlock mail contained
24
+ syn keyword ngxDirectiveBlock events contained
25
+ syn keyword ngxDirectiveBlock server contained
26
+ syn keyword ngxDirectiveBlock types contained
27
+ syn keyword ngxDirectiveBlock location contained
28
+ syn keyword ngxDirectiveBlock upstream contained
29
+ syn keyword ngxDirectiveBlock charset_map contained
30
+ syn keyword ngxDirectiveBlock limit_except contained
31
+ syn keyword ngxDirectiveBlock if contained
32
+ syn keyword ngxDirectiveBlock geo contained
33
+ syn keyword ngxDirectiveBlock map contained
34
+
35
+ syn keyword ngxDirectiveImportant include
36
+ syn keyword ngxDirectiveImportant root
37
+ syn keyword ngxDirectiveImportant server
38
+ syn keyword ngxDirectiveImportant server_name
39
+ syn keyword ngxDirectiveImportant listen
40
+ syn keyword ngxDirectiveImportant internal
41
+ syn keyword ngxDirectiveImportant proxy_pass
42
+ syn keyword ngxDirectiveImportant memcached_pass
43
+ syn keyword ngxDirectiveImportant fastcgi_pass
44
+ syn keyword ngxDirectiveImportant try_files
45
+
46
+ syn keyword ngxDirectiveControl break
47
+ syn keyword ngxDirectiveControl return
48
+ syn keyword ngxDirectiveControl rewrite
49
+ syn keyword ngxDirectiveControl set
50
+
51
+ syn keyword ngxDirectiveError error_page
52
+ syn keyword ngxDirectiveError post_action
53
+
54
+ syn keyword ngxDirectiveDeprecated connections
55
+ syn keyword ngxDirectiveDeprecated imap
56
+ syn keyword ngxDirectiveDeprecated open_file_cache_retest
57
+ syn keyword ngxDirectiveDeprecated optimize_server_names
58
+ syn keyword ngxDirectiveDeprecated satisfy_any
59
+
60
+ syn keyword ngxDirective accept_mutex
61
+ syn keyword ngxDirective accept_mutex_delay
62
+ syn keyword ngxDirective access_log
63
+ syn keyword ngxDirective add_after_body
64
+ syn keyword ngxDirective add_before_body
65
+ syn keyword ngxDirective add_header
66
+ syn keyword ngxDirective addition_types
67
+ syn keyword ngxDirective aio
68
+ syn keyword ngxDirective alias
69
+ syn keyword ngxDirective allow
70
+ syn keyword ngxDirective ancient_browser
71
+ syn keyword ngxDirective ancient_browser_value
72
+ syn keyword ngxDirective auth_basic
73
+ syn keyword ngxDirective auth_basic_user_file
74
+ syn keyword ngxDirective auth_http
75
+ syn keyword ngxDirective auth_http_header
76
+ syn keyword ngxDirective auth_http_timeout
77
+ syn keyword ngxDirective autoindex
78
+ syn keyword ngxDirective autoindex_exact_size
79
+ syn keyword ngxDirective autoindex_localtime
80
+ syn keyword ngxDirective charset
81
+ syn keyword ngxDirective charset_types
82
+ syn keyword ngxDirective client_body_buffer_size
83
+ syn keyword ngxDirective client_body_in_file_only
84
+ syn keyword ngxDirective client_body_in_single_buffer
85
+ syn keyword ngxDirective client_body_temp_path
86
+ syn keyword ngxDirective client_body_timeout
87
+ syn keyword ngxDirective client_header_buffer_size
88
+ syn keyword ngxDirective client_header_timeout
89
+ syn keyword ngxDirective client_max_body_size
90
+ syn keyword ngxDirective connection_pool_size
91
+ syn keyword ngxDirective create_full_put_path
92
+ syn keyword ngxDirective daemon
93
+ syn keyword ngxDirective dav_access
94
+ syn keyword ngxDirective dav_methods
95
+ syn keyword ngxDirective debug_connection
96
+ syn keyword ngxDirective debug_points
97
+ syn keyword ngxDirective default_type
98
+ syn keyword ngxDirective degradation
99
+ syn keyword ngxDirective degrade
100
+ syn keyword ngxDirective deny
101
+ syn keyword ngxDirective devpoll_changes
102
+ syn keyword ngxDirective devpoll_events
103
+ syn keyword ngxDirective directio
104
+ syn keyword ngxDirective directio_alignment
105
+ syn keyword ngxDirective empty_gif
106
+ syn keyword ngxDirective env
107
+ syn keyword ngxDirective epoll_events
108
+ syn keyword ngxDirective error_log
109
+ syn keyword ngxDirective eventport_events
110
+ syn keyword ngxDirective expires
111
+ syn keyword ngxDirective fastcgi_bind
112
+ syn keyword ngxDirective fastcgi_buffer_size
113
+ syn keyword ngxDirective fastcgi_buffers
114
+ syn keyword ngxDirective fastcgi_busy_buffers_size
115
+ syn keyword ngxDirective fastcgi_cache
116
+ syn keyword ngxDirective fastcgi_cache_key
117
+ syn keyword ngxDirective fastcgi_cache_methods
118
+ syn keyword ngxDirective fastcgi_cache_min_uses
119
+ syn keyword ngxDirective fastcgi_cache_path
120
+ syn keyword ngxDirective fastcgi_cache_use_stale
121
+ syn keyword ngxDirective fastcgi_cache_valid
122
+ syn keyword ngxDirective fastcgi_catch_stderr
123
+ syn keyword ngxDirective fastcgi_connect_timeout
124
+ syn keyword ngxDirective fastcgi_hide_header
125
+ syn keyword ngxDirective fastcgi_ignore_client_abort
126
+ syn keyword ngxDirective fastcgi_ignore_headers
127
+ syn keyword ngxDirective fastcgi_index
128
+ syn keyword ngxDirective fastcgi_intercept_errors
129
+ syn keyword ngxDirective fastcgi_max_temp_file_size
130
+ syn keyword ngxDirective fastcgi_next_upstream
131
+ syn keyword ngxDirective fastcgi_param
132
+ syn keyword ngxDirective fastcgi_pass_header
133
+ syn keyword ngxDirective fastcgi_pass_request_body
134
+ syn keyword ngxDirective fastcgi_pass_request_headers
135
+ syn keyword ngxDirective fastcgi_read_timeout
136
+ syn keyword ngxDirective fastcgi_send_lowat
137
+ syn keyword ngxDirective fastcgi_send_timeout
138
+ syn keyword ngxDirective fastcgi_split_path_info
139
+ syn keyword ngxDirective fastcgi_store
140
+ syn keyword ngxDirective fastcgi_store_access
141
+ syn keyword ngxDirective fastcgi_temp_file_write_size
142
+ syn keyword ngxDirective fastcgi_temp_path
143
+ syn keyword ngxDirective fastcgi_upstream_fail_timeout
144
+ syn keyword ngxDirective fastcgi_upstream_max_fails
145
+ syn keyword ngxDirective flv
146
+ syn keyword ngxDirective geoip_city
147
+ syn keyword ngxDirective geoip_country
148
+ syn keyword ngxDirective google_perftools_profiles
149
+ syn keyword ngxDirective gzip
150
+ syn keyword ngxDirective gzip_buffers
151
+ syn keyword ngxDirective gzip_comp_level
152
+ syn keyword ngxDirective gzip_disable
153
+ syn keyword ngxDirective gzip_hash
154
+ syn keyword ngxDirective gzip_http_version
155
+ syn keyword ngxDirective gzip_min_length
156
+ syn keyword ngxDirective gzip_no_buffer
157
+ syn keyword ngxDirective gzip_proxied
158
+ syn keyword ngxDirective gzip_static
159
+ syn keyword ngxDirective gzip_types
160
+ syn keyword ngxDirective gzip_vary
161
+ syn keyword ngxDirective gzip_window
162
+ syn keyword ngxDirective if_modified_since
163
+ syn keyword ngxDirective ignore_invalid_headers
164
+ syn keyword ngxDirective image_filter
165
+ syn keyword ngxDirective image_filter_buffer
166
+ syn keyword ngxDirective image_filter_jpeg_quality
167
+ syn keyword ngxDirective image_filter_transparency
168
+ syn keyword ngxDirective imap_auth
169
+ syn keyword ngxDirective imap_capabilities
170
+ syn keyword ngxDirective imap_client_buffer
171
+ syn keyword ngxDirective index
172
+ syn keyword ngxDirective ip_hash
173
+ syn keyword ngxDirective keepalive_requests
174
+ syn keyword ngxDirective keepalive_timeout
175
+ syn keyword ngxDirective kqueue_changes
176
+ syn keyword ngxDirective kqueue_events
177
+ syn keyword ngxDirective large_client_header_buffers
178
+ syn keyword ngxDirective limit_conn
179
+ syn keyword ngxDirective limit_conn_log_level
180
+ syn keyword ngxDirective limit_rate
181
+ syn keyword ngxDirective limit_rate_after
182
+ syn keyword ngxDirective limit_req
183
+ syn keyword ngxDirective limit_req_log_level
184
+ syn keyword ngxDirective limit_req_zone
185
+ syn keyword ngxDirective limit_zone
186
+ syn keyword ngxDirective lingering_time
187
+ syn keyword ngxDirective lingering_timeout
188
+ syn keyword ngxDirective lock_file
189
+ syn keyword ngxDirective log_format
190
+ syn keyword ngxDirective log_not_found
191
+ syn keyword ngxDirective log_subrequest
192
+ syn keyword ngxDirective map_hash_bucket_size
193
+ syn keyword ngxDirective map_hash_max_size
194
+ syn keyword ngxDirective master_process
195
+ syn keyword ngxDirective memcached_bind
196
+ syn keyword ngxDirective memcached_buffer_size
197
+ syn keyword ngxDirective memcached_connect_timeout
198
+ syn keyword ngxDirective memcached_next_upstream
199
+ syn keyword ngxDirective memcached_read_timeout
200
+ syn keyword ngxDirective memcached_send_timeout
201
+ syn keyword ngxDirective memcached_upstream_fail_timeout
202
+ syn keyword ngxDirective memcached_upstream_max_fails
203
+ syn keyword ngxDirective merge_slashes
204
+ syn keyword ngxDirective min_delete_depth
205
+ syn keyword ngxDirective modern_browser
206
+ syn keyword ngxDirective modern_browser_value
207
+ syn keyword ngxDirective msie_padding
208
+ syn keyword ngxDirective msie_refresh
209
+ syn keyword ngxDirective multi_accept
210
+ syn keyword ngxDirective open_file_cache
211
+ syn keyword ngxDirective open_file_cache_errors
212
+ syn keyword ngxDirective open_file_cache_events
213
+ syn keyword ngxDirective open_file_cache_min_uses
214
+ syn keyword ngxDirective open_file_cache_valid
215
+ syn keyword ngxDirective open_log_file_cache
216
+ syn keyword ngxDirective output_buffers
217
+ syn keyword ngxDirective override_charset
218
+ syn keyword ngxDirective perl
219
+ syn keyword ngxDirective perl_modules
220
+ syn keyword ngxDirective perl_require
221
+ syn keyword ngxDirective perl_set
222
+ syn keyword ngxDirective pid
223
+ syn keyword ngxDirective pop3_auth
224
+ syn keyword ngxDirective pop3_capabilities
225
+ syn keyword ngxDirective port_in_redirect
226
+ syn keyword ngxDirective postpone_gzipping
227
+ syn keyword ngxDirective postpone_output
228
+ syn keyword ngxDirective protocol
229
+ syn keyword ngxDirective proxy
230
+ syn keyword ngxDirective proxy_bind
231
+ syn keyword ngxDirective proxy_buffer
232
+ syn keyword ngxDirective proxy_buffer_size
233
+ syn keyword ngxDirective proxy_buffering
234
+ syn keyword ngxDirective proxy_buffers
235
+ syn keyword ngxDirective proxy_busy_buffers_size
236
+ syn keyword ngxDirective proxy_cache
237
+ syn keyword ngxDirective proxy_cache_key
238
+ syn keyword ngxDirective proxy_cache_methods
239
+ syn keyword ngxDirective proxy_cache_min_uses
240
+ syn keyword ngxDirective proxy_cache_path
241
+ syn keyword ngxDirective proxy_cache_use_stale
242
+ syn keyword ngxDirective proxy_cache_valid
243
+ syn keyword ngxDirective proxy_connect_timeout
244
+ syn keyword ngxDirective proxy_headers_hash_bucket_size
245
+ syn keyword ngxDirective proxy_headers_hash_max_size
246
+ syn keyword ngxDirective proxy_hide_header
247
+ syn keyword ngxDirective proxy_ignore_client_abort
248
+ syn keyword ngxDirective proxy_ignore_headers
249
+ syn keyword ngxDirective proxy_intercept_errors
250
+ syn keyword ngxDirective proxy_max_temp_file_size
251
+ syn keyword ngxDirective proxy_method
252
+ syn keyword ngxDirective proxy_next_upstream
253
+ syn keyword ngxDirective proxy_pass_error_message
254
+ syn keyword ngxDirective proxy_pass_header
255
+ syn keyword ngxDirective proxy_pass_request_body
256
+ syn keyword ngxDirective proxy_pass_request_headers
257
+ syn keyword ngxDirective proxy_read_timeout
258
+ syn keyword ngxDirective proxy_redirect
259
+ syn keyword ngxDirective proxy_send_lowat
260
+ syn keyword ngxDirective proxy_send_timeout
261
+ syn keyword ngxDirective proxy_set_body
262
+ syn keyword ngxDirective proxy_set_header
263
+ syn keyword ngxDirective proxy_ssl_session_reuse
264
+ syn keyword ngxDirective proxy_store
265
+ syn keyword ngxDirective proxy_store_access
266
+ syn keyword ngxDirective proxy_temp_file_write_size
267
+ syn keyword ngxDirective proxy_temp_path
268
+ syn keyword ngxDirective proxy_timeout
269
+ syn keyword ngxDirective proxy_upstream_fail_timeout
270
+ syn keyword ngxDirective proxy_upstream_max_fails
271
+ syn keyword ngxDirective random_index
272
+ syn keyword ngxDirective read_ahead
273
+ syn keyword ngxDirective real_ip_header
274
+ syn keyword ngxDirective recursive_error_pages
275
+ syn keyword ngxDirective request_pool_size
276
+ syn keyword ngxDirective reset_timedout_connection
277
+ syn keyword ngxDirective resolver
278
+ syn keyword ngxDirective resolver_timeout
279
+ syn keyword ngxDirective rewrite_log
280
+ syn keyword ngxDirective rtsig_overflow_events
281
+ syn keyword ngxDirective rtsig_overflow_test
282
+ syn keyword ngxDirective rtsig_overflow_threshold
283
+ syn keyword ngxDirective rtsig_signo
284
+ syn keyword ngxDirective satisfy
285
+ syn keyword ngxDirective secure_link_secret
286
+ syn keyword ngxDirective send_lowat
287
+ syn keyword ngxDirective send_timeout
288
+ syn keyword ngxDirective sendfile
289
+ syn keyword ngxDirective sendfile_max_chunk
290
+ syn keyword ngxDirective server_name_in_redirect
291
+ syn keyword ngxDirective server_names_hash_bucket_size
292
+ syn keyword ngxDirective server_names_hash_max_size
293
+ syn keyword ngxDirective server_tokens
294
+ syn keyword ngxDirective set_real_ip_from
295
+ syn keyword ngxDirective smtp_auth
296
+ syn keyword ngxDirective smtp_capabilities
297
+ syn keyword ngxDirective smtp_client_buffer
298
+ syn keyword ngxDirective smtp_greeting_delay
299
+ syn keyword ngxDirective so_keepalive
300
+ syn keyword ngxDirective source_charset
301
+ syn keyword ngxDirective ssi
302
+ syn keyword ngxDirective ssi_ignore_recycled_buffers
303
+ syn keyword ngxDirective ssi_min_file_chunk
304
+ syn keyword ngxDirective ssi_silent_errors
305
+ syn keyword ngxDirective ssi_types
306
+ syn keyword ngxDirective ssi_value_length
307
+ syn keyword ngxDirective ssl
308
+ syn keyword ngxDirective ssl_certificate
309
+ syn keyword ngxDirective ssl_certificate_key
310
+ syn keyword ngxDirective ssl_ciphers
311
+ syn keyword ngxDirective ssl_client_certificate
312
+ syn keyword ngxDirective ssl_crl
313
+ syn keyword ngxDirective ssl_dhparam
314
+ syn keyword ngxDirective ssl_engine
315
+ syn keyword ngxDirective ssl_prefer_server_ciphers
316
+ syn keyword ngxDirective ssl_protocols
317
+ syn keyword ngxDirective ssl_session_cache
318
+ syn keyword ngxDirective ssl_session_timeout
319
+ syn keyword ngxDirective ssl_verify_client
320
+ syn keyword ngxDirective ssl_verify_depth
321
+ syn keyword ngxDirective starttls
322
+ syn keyword ngxDirective stub_status
323
+ syn keyword ngxDirective sub_filter
324
+ syn keyword ngxDirective sub_filter_once
325
+ syn keyword ngxDirective sub_filter_types
326
+ syn keyword ngxDirective tcp_nodelay
327
+ syn keyword ngxDirective tcp_nopush
328
+ syn keyword ngxDirective thread_stack_size
329
+ syn keyword ngxDirective timeout
330
+ syn keyword ngxDirective timer_resolution
331
+ syn keyword ngxDirective types_hash_bucket_size
332
+ syn keyword ngxDirective types_hash_max_size
333
+ syn keyword ngxDirective underscores_in_headers
334
+ syn keyword ngxDirective uninitialized_variable_warn
335
+ syn keyword ngxDirective use
336
+ syn keyword ngxDirective user
337
+ syn keyword ngxDirective userid
338
+ syn keyword ngxDirective userid_domain
339
+ syn keyword ngxDirective userid_expires
340
+ syn keyword ngxDirective userid_mark
341
+ syn keyword ngxDirective userid_name
342
+ syn keyword ngxDirective userid_p3p
343
+ syn keyword ngxDirective userid_path
344
+ syn keyword ngxDirective userid_service
345
+ syn keyword ngxDirective valid_referers
346
+ syn keyword ngxDirective variables_hash_bucket_size
347
+ syn keyword ngxDirective variables_hash_max_size
348
+ syn keyword ngxDirective worker_connections
349
+ syn keyword ngxDirective worker_cpu_affinity
350
+ syn keyword ngxDirective worker_priority
351
+ syn keyword ngxDirective worker_processes
352
+ syn keyword ngxDirective worker_rlimit_core
353
+ syn keyword ngxDirective worker_rlimit_nofile
354
+ syn keyword ngxDirective worker_rlimit_sigpending
355
+ syn keyword ngxDirective worker_threads
356
+ syn keyword ngxDirective working_directory
357
+ syn keyword ngxDirective xclient
358
+ syn keyword ngxDirective xml_entities
359
+ syn keyword ngxDirective xslt_stylesheet
360
+ syn keyword ngxDirective xslt_types
361
+
362
+ " 3rd party module list:
363
+ " http://wiki.nginx.org/Nginx3rdPartyModules
364
+
365
+ " Accept Language Module <http://wiki.nginx.org/NginxAcceptLanguageModule>
366
+ " Parses the Accept-Language header and gives the most suitable locale from a list of supported locales.
367
+ syn keyword ngxDirectiveThirdParty set_from_accept_language
368
+
369
+ " Access Key Module <http://wiki.nginx.org/NginxHttpAccessKeyModule>
370
+ " Denies access unless the request URL contains an access key.
371
+ syn keyword ngxDirectiveThirdParty accesskey
372
+ syn keyword ngxDirectiveThirdParty accesskey_arg
373
+ syn keyword ngxDirectiveThirdParty accesskey_hashmethod
374
+ syn keyword ngxDirectiveThirdParty accesskey_signature
375
+
376
+ " Auth PAM Module <http://web.iti.upv.es/~sto/nginx/>
377
+ " HTTP Basic Authentication using PAM.
378
+ syn keyword ngxDirectiveThirdParty auth_pam
379
+ syn keyword ngxDirectiveThirdParty auth_pam_service_name
380
+
381
+ " Cache Purge Module <http://labs.frickle.com/nginx_ngx_cache_purge/>
382
+ " Module adding ability to purge content from FastCGI and proxy caches.
383
+ syn keyword ngxDirectiveThirdParty fastcgi_cache_purge
384
+ syn keyword ngxDirectiveThirdParty proxy_cache_purge
385
+
386
+ " Chunkin Module <http://wiki.nginx.org/NginxHttpChunkinModule>
387
+ " HTTP 1.1 chunked-encoding request body support for Nginx.
388
+ syn keyword ngxDirectiveThirdParty chunkin
389
+ syn keyword ngxDirectiveThirdParty chunkin_keepalive
390
+ syn keyword ngxDirectiveThirdParty chunkin_max_chunks_per_buf
391
+ syn keyword ngxDirectiveThirdParty chunkin_resume
392
+
393
+ " Circle GIF Module <http://wiki.nginx.org/NginxHttpCircleGifModule>
394
+ " Generates simple circle images with the colors and size specified in the URL.
395
+ syn keyword ngxDirectiveThirdParty circle_gif
396
+ syn keyword ngxDirectiveThirdParty circle_gif_max_radius
397
+ syn keyword ngxDirectiveThirdParty circle_gif_min_radius
398
+ syn keyword ngxDirectiveThirdParty circle_gif_step_radius
399
+
400
+ " Drizzle Module <http://github.com/chaoslawful/drizzle-nginx-module>
401
+ " Make nginx talk directly to mysql, drizzle, and sqlite3 by libdrizzle.
402
+ syn keyword ngxDirectiveThirdParty drizzle_connect_timeout
403
+ syn keyword ngxDirectiveThirdParty drizzle_dbname
404
+ syn keyword ngxDirectiveThirdParty drizzle_keepalive
405
+ syn keyword ngxDirectiveThirdParty drizzle_module_header
406
+ syn keyword ngxDirectiveThirdParty drizzle_pass
407
+ syn keyword ngxDirectiveThirdParty drizzle_query
408
+ syn keyword ngxDirectiveThirdParty drizzle_recv_cols_timeout
409
+ syn keyword ngxDirectiveThirdParty drizzle_recv_rows_timeout
410
+ syn keyword ngxDirectiveThirdParty drizzle_send_query_timeout
411
+ syn keyword ngxDirectiveThirdParty drizzle_server
412
+
413
+ " Echo Module <http://wiki.nginx.org/NginxHttpEchoModule>
414
+ " Brings 'echo', 'sleep', 'time', 'exec' and more shell-style goodies to Nginx config file.
415
+ syn keyword ngxDirectiveThirdParty echo
416
+ syn keyword ngxDirectiveThirdParty echo_after_body
417
+ syn keyword ngxDirectiveThirdParty echo_before_body
418
+ syn keyword ngxDirectiveThirdParty echo_blocking_sleep
419
+ syn keyword ngxDirectiveThirdParty echo_duplicate
420
+ syn keyword ngxDirectiveThirdParty echo_end
421
+ syn keyword ngxDirectiveThirdParty echo_exec
422
+ syn keyword ngxDirectiveThirdParty echo_flush
423
+ syn keyword ngxDirectiveThirdParty echo_foreach_split
424
+ syn keyword ngxDirectiveThirdParty echo_location
425
+ syn keyword ngxDirectiveThirdParty echo_location_async
426
+ syn keyword ngxDirectiveThirdParty echo_read_request_body
427
+ syn keyword ngxDirectiveThirdParty echo_request_body
428
+ syn keyword ngxDirectiveThirdParty echo_reset_timer
429
+ syn keyword ngxDirectiveThirdParty echo_sleep
430
+ syn keyword ngxDirectiveThirdParty echo_subrequest
431
+ syn keyword ngxDirectiveThirdParty echo_subrequest_async
432
+
433
+ " Events Module <http://docs.dutov.org/nginx_modules_events_en.html>
434
+ " Privides options for start/stop events.
435
+ syn keyword ngxDirectiveThirdParty on_start
436
+ syn keyword ngxDirectiveThirdParty on_stop
437
+
438
+ " EY Balancer Module <http://github.com/ry/nginx-ey-balancer>
439
+ " Adds a request queue to Nginx that allows the limiting of concurrent requests passed to the upstream.
440
+ syn keyword ngxDirectiveThirdParty max_connections
441
+ syn keyword ngxDirectiveThirdParty max_connections_max_queue_length
442
+ syn keyword ngxDirectiveThirdParty max_connections_queue_timeout
443
+
444
+ " Fancy Indexes Module <https://connectical.com/projects/ngx-fancyindex/wiki>
445
+ " Like the built-in autoindex module, but fancier.
446
+ syn keyword ngxDirectiveThirdParty fancyindex
447
+ syn keyword ngxDirectiveThirdParty fancyindex_exact_size
448
+ syn keyword ngxDirectiveThirdParty fancyindex_footer
449
+ syn keyword ngxDirectiveThirdParty fancyindex_header
450
+ syn keyword ngxDirectiveThirdParty fancyindex_localtime
451
+ syn keyword ngxDirectiveThirdParty fancyindex_readme
452
+ syn keyword ngxDirectiveThirdParty fancyindex_readme_mode
453
+
454
+ " GeoIP Module (DEPRECATED) <http://wiki.nginx.org/NginxHttp3rdPartyGeoIPModule>
455
+ " Country code lookups via the MaxMind GeoIP API.
456
+ syn keyword ngxDirectiveThirdParty geoip_country_file
457
+
458
+ " Headers More Module <http://wiki.nginx.org/NginxHttpHeadersMoreModule>
459
+ " Set and clear input and output headers...more than "add"!
460
+ syn keyword ngxDirectiveThirdParty more_clear_headers
461
+ syn keyword ngxDirectiveThirdParty more_clear_input_headers
462
+ syn keyword ngxDirectiveThirdParty more_set_headers
463
+ syn keyword ngxDirectiveThirdParty more_set_input_headers
464
+
465
+ " HTTP Push Module <http://pushmodule.slact.net/>
466
+ " Turn Nginx into an adept long-polling HTTP Push (Comet) server.
467
+ syn keyword ngxDirectiveThirdParty push_buffer_size
468
+ syn keyword ngxDirectiveThirdParty push_listener
469
+ syn keyword ngxDirectiveThirdParty push_message_timeout
470
+ syn keyword ngxDirectiveThirdParty push_queue_messages
471
+ syn keyword ngxDirectiveThirdParty push_sender
472
+
473
+ " HTTP Redis Module <http://people.FreeBSD.ORG/~osa/ngx_http_redis-0.3.1.tar.gz>>
474
+ " Redis <http://code.google.com/p/redis/> support.>
475
+ syn keyword ngxDirectiveThirdParty redis_bind
476
+ syn keyword ngxDirectiveThirdParty redis_buffer_size
477
+ syn keyword ngxDirectiveThirdParty redis_connect_timeout
478
+ syn keyword ngxDirectiveThirdParty redis_next_upstream
479
+ syn keyword ngxDirectiveThirdParty redis_pass
480
+ syn keyword ngxDirectiveThirdParty redis_read_timeout
481
+ syn keyword ngxDirectiveThirdParty redis_send_timeout
482
+
483
+ " HTTP JavaScript Module <http://wiki.github.com/kung-fu-tzu/ngx_http_js_module>
484
+ " Embedding SpiderMonkey. Nearly full port on Perl module.
485
+ syn keyword ngxDirectiveThirdParty js
486
+ syn keyword ngxDirectiveThirdParty js_filter
487
+ syn keyword ngxDirectiveThirdParty js_filter_types
488
+ syn keyword ngxDirectiveThirdParty js_load
489
+ syn keyword ngxDirectiveThirdParty js_maxmem
490
+ syn keyword ngxDirectiveThirdParty js_require
491
+ syn keyword ngxDirectiveThirdParty js_set
492
+ syn keyword ngxDirectiveThirdParty js_utf8
493
+
494
+ " Log Request Speed <http://wiki.nginx.org/NginxHttpLogRequestSpeed>
495
+ " Log the time it took to process each request.
496
+ syn keyword ngxDirectiveThirdParty log_request_speed_filter
497
+ syn keyword ngxDirectiveThirdParty log_request_speed_filter_timeout
498
+
499
+ " Memc Module <http://wiki.nginx.org/NginxHttpMemcModule>
500
+ " An extended version of the standard memcached module that supports set, add, delete, and many more memcached commands.
501
+ syn keyword ngxDirectiveThirdParty memc_buffer_size
502
+ syn keyword ngxDirectiveThirdParty memc_cmds_allowed
503
+ syn keyword ngxDirectiveThirdParty memc_connect_timeout
504
+ syn keyword ngxDirectiveThirdParty memc_flags_to_last_modified
505
+ syn keyword ngxDirectiveThirdParty memc_next_upstream
506
+ syn keyword ngxDirectiveThirdParty memc_pass
507
+ syn keyword ngxDirectiveThirdParty memc_read_timeout
508
+ syn keyword ngxDirectiveThirdParty memc_send_timeout
509
+ syn keyword ngxDirectiveThirdParty memc_upstream_fail_timeout
510
+ syn keyword ngxDirectiveThirdParty memc_upstream_max_fails
511
+
512
+ " Mogilefs Module <http://www.grid.net.ru/nginx/mogilefs.en.html>
513
+ " Implements a MogileFS client, provides a replace to the Perlbal reverse proxy of the original MogileFS.
514
+ syn keyword ngxDirectiveThirdParty mogilefs_connect_timeout
515
+ syn keyword ngxDirectiveThirdParty mogilefs_domain
516
+ syn keyword ngxDirectiveThirdParty mogilefs_methods
517
+ syn keyword ngxDirectiveThirdParty mogilefs_noverify
518
+ syn keyword ngxDirectiveThirdParty mogilefs_pass
519
+ syn keyword ngxDirectiveThirdParty mogilefs_read_timeout
520
+ syn keyword ngxDirectiveThirdParty mogilefs_send_timeout
521
+ syn keyword ngxDirectiveThirdParty mogilefs_tracker
522
+
523
+ " MP4 Streaming Lite Module <http://wiki.nginx.org/NginxMP4StreamingLite>
524
+ " Will seek to a certain time within H.264/MP4 files when provided with a 'start' parameter in the URL.
525
+ syn keyword ngxDirectiveThirdParty mp4
526
+
527
+ " Nginx Notice Module <http://xph.us/software/nginx-notice/>
528
+ " Serve static file to POST requests.
529
+ syn keyword ngxDirectiveThirdParty notice
530
+ syn keyword ngxDirectiveThirdParty notice_type
531
+
532
+ " Phusion Passenger <http://www.modrails.com/documentation.html>
533
+ " Easy and robust deployment of Ruby on Rails application on Apache and Nginx webservers.
534
+ syn keyword ngxDirectiveThirdParty passenger_base_uri
535
+ syn keyword ngxDirectiveThirdParty passenger_default_user
536
+ syn keyword ngxDirectiveThirdParty passenger_enabled
537
+ syn keyword ngxDirectiveThirdParty passenger_log_level
538
+ syn keyword ngxDirectiveThirdParty passenger_max_instances_per_app
539
+ syn keyword ngxDirectiveThirdParty passenger_max_pool_size
540
+ syn keyword ngxDirectiveThirdParty passenger_pool_idle_time
541
+ syn keyword ngxDirectiveThirdParty passenger_root
542
+ syn keyword ngxDirectiveThirdParty passenger_ruby
543
+ syn keyword ngxDirectiveThirdParty passenger_use_global_queue
544
+ syn keyword ngxDirectiveThirdParty passenger_user_switching
545
+ syn keyword ngxDirectiveThirdParty rack_env
546
+ syn keyword ngxDirectiveThirdParty rails_app_spawner_idle_time
547
+ syn keyword ngxDirectiveThirdParty rails_env
548
+ syn keyword ngxDirectiveThirdParty rails_framework_spawner_idle_time
549
+ syn keyword ngxDirectiveThirdParty rails_spawn_method
550
+
551
+ " RDS JSON Module <http://github.com/agentzh/rds-json-nginx-module>
552
+ " Help ngx_drizzle and other DBD modules emit JSON data.
553
+ syn keyword ngxDirectiveThirdParty rds_json
554
+ syn keyword ngxDirectiveThirdParty rds_json_content_type
555
+ syn keyword ngxDirectiveThirdParty rds_json_format
556
+ syn keyword ngxDirectiveThirdParty rds_json_ret
557
+
558
+ " RRD Graph Module <http://wiki.nginx.org/NginxNgx_rrd_graph>
559
+ " This module provides an HTTP interface to RRDtool's graphing facilities.
560
+ syn keyword ngxDirectiveThirdParty rrd_graph
561
+ syn keyword ngxDirectiveThirdParty rrd_graph_root
562
+
563
+ " Secure Download <http://wiki.nginx.org/NginxHttpSecureDownload>
564
+ " Create expiring links.
565
+ syn keyword ngxDirectiveThirdParty secure_download
566
+ syn keyword ngxDirectiveThirdParty secure_download_fail_location
567
+ syn keyword ngxDirectiveThirdParty secure_download_path_mode
568
+ syn keyword ngxDirectiveThirdParty secure_download_secret
569
+
570
+ " SlowFS Cache Module <http://labs.frickle.com/nginx_ngx_slowfs_cache/>
571
+ " Module adding ability to cache static files.
572
+ syn keyword ngxDirectiveThirdParty slowfs_big_file_size
573
+ syn keyword ngxDirectiveThirdParty slowfs_cache
574
+ syn keyword ngxDirectiveThirdParty slowfs_cache_key
575
+ syn keyword ngxDirectiveThirdParty slowfs_cache_min_uses
576
+ syn keyword ngxDirectiveThirdParty slowfs_cache_path
577
+ syn keyword ngxDirectiveThirdParty slowfs_cache_purge
578
+ syn keyword ngxDirectiveThirdParty slowfs_cache_valid
579
+ syn keyword ngxDirectiveThirdParty slowfs_temp_path
580
+
581
+ " Strip Module <http://wiki.nginx.org/NginxHttpStripModule>
582
+ " Whitespace remover.
583
+ syn keyword ngxDirectiveThirdParty strip
584
+
585
+ " Substitutions Module <http://wiki.nginx.org/NginxHttpSubsModule>
586
+ " A filter module which can do both regular expression and fixed string substitutions on response bodies.
587
+ syn keyword ngxDirectiveThirdParty subs_filter
588
+ syn keyword ngxDirectiveThirdParty subs_filter_types
589
+
590
+ " Supervisord Module <http://labs.frickle.com/nginx_ngx_supervisord/>
591
+ " Module providing nginx with API to communicate with supervisord and manage (start/stop) backends on-demand.
592
+ syn keyword ngxDirectiveThirdParty supervisord
593
+ syn keyword ngxDirectiveThirdParty supervisord_inherit_backend_status
594
+ syn keyword ngxDirectiveThirdParty supervisord_name
595
+ syn keyword ngxDirectiveThirdParty supervisord_start
596
+ syn keyword ngxDirectiveThirdParty supervisord_stop
597
+
598
+ " Upload Module <http://www.grid.net.ru/nginx/upload.en.html>
599
+ " Parses multipart/form-data allowing arbitrary handling of uploaded files.
600
+ syn keyword ngxDirectiveThirdParty upload_aggregate_form_field
601
+ syn keyword ngxDirectiveThirdParty upload_buffer_size
602
+ syn keyword ngxDirectiveThirdParty upload_cleanup
603
+ syn keyword ngxDirectiveThirdParty upload_limit_rate
604
+ syn keyword ngxDirectiveThirdParty upload_max_file_size
605
+ syn keyword ngxDirectiveThirdParty upload_max_output_body_len
606
+ syn keyword ngxDirectiveThirdParty upload_max_part_header_len
607
+ syn keyword ngxDirectiveThirdParty upload_pass
608
+ syn keyword ngxDirectiveThirdParty upload_pass_args
609
+ syn keyword ngxDirectiveThirdParty upload_pass_form_field
610
+ syn keyword ngxDirectiveThirdParty upload_set_form_field
611
+ syn keyword ngxDirectiveThirdParty upload_store
612
+ syn keyword ngxDirectiveThirdParty upload_store_access
613
+
614
+ " Upload Progress Module <http://wiki.nginx.org/NginxHttpUploadProgressModule>
615
+ " Tracks and reports upload progress.
616
+ syn keyword ngxDirectiveThirdParty report_uploads
617
+ syn keyword ngxDirectiveThirdParty track_uploads
618
+ syn keyword ngxDirectiveThirdParty upload_progress
619
+ syn keyword ngxDirectiveThirdParty upload_progress_content_type
620
+ syn keyword ngxDirectiveThirdParty upload_progress_header
621
+ syn keyword ngxDirectiveThirdParty upload_progress_json_output
622
+ syn keyword ngxDirectiveThirdParty upload_progress_template
623
+
624
+ " Upstream Fair Balancer <http://wiki.nginx.org/NginxHttpUpstreamFairModule>
625
+ " Sends an incoming request to the least-busy backend server, rather than distributing requests round-robin.
626
+ syn keyword ngxDirectiveThirdParty fair
627
+ syn keyword ngxDirectiveThirdParty upstream_fair_shm_size
628
+
629
+ " Upstream Consistent Hash <http://wiki.nginx.org/NginxHttpUpstreamConsistentHash>
630
+ " Select backend based on Consistent hash ring.
631
+ syn keyword ngxDirectiveThirdParty consistent_hash
632
+
633
+ " Upstream Hash Module <http://wiki.nginx.org/NginxHttpUpstreamRequestHashModule>
634
+ " Provides simple upstream load distribution by hashing a configurable variable.
635
+ syn keyword ngxDirectiveThirdParty hash
636
+ syn keyword ngxDirectiveThirdParty hash_again
637
+
638
+ " XSS Module <http://github.com/agentzh/xss-nginx-module>
639
+ " Native support for cross-site scripting (XSS) in an nginx.
640
+ syn keyword ngxDirectiveThirdParty xss_callback_arg
641
+ syn keyword ngxDirectiveThirdParty xss_get
642
+ syn keyword ngxDirectiveThirdParty xss_input_types
643
+ syn keyword ngxDirectiveThirdParty xss_output_type
644
+
645
+ " uWSGI Module <http://wiki.nginx.org/HttpUwsgiModule>
646
+ " Allows Nginx to interact with uWSGI processes and control what parameters are passed to the process.
647
+ syn keyword ngxDirectiveThirdParty uwsgi_bind
648
+ syn keyword ngxDirectiveThirdParty uwsgi_buffer_size
649
+ syn keyword ngxDirectiveThirdParty uwsgi_buffering
650
+ syn keyword ngxDirectiveThirdParty uwsgi_buffers
651
+ syn keyword ngxDirectiveThirdParty uwsgi_busy_buffers_size
652
+ syn keyword ngxDirectiveThirdParty uwsgi_cache
653
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_bypass
654
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_key
655
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_lock
656
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_lock_timeout
657
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_methods
658
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_min_uses
659
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_path
660
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_use_stale
661
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_valid
662
+ syn keyword ngxDirectiveThirdParty uwsgi_connect_timeout
663
+ syn keyword ngxDirectiveThirdParty uwsgi_hide_header
664
+ syn keyword ngxDirectiveThirdParty uwsgi_ignore_client_abort
665
+ syn keyword ngxDirectiveThirdParty uwsgi_ignore_headers
666
+ syn keyword ngxDirectiveThirdParty uwsgi_intercept_errors
667
+ syn keyword ngxDirectiveThirdParty uwsgi_max_temp_file_size
668
+ syn keyword ngxDirectiveThirdParty uwsgi_modifier1
669
+ syn keyword ngxDirectiveThirdParty uwsgi_modifier2
670
+ syn keyword ngxDirectiveThirdParty uwsgi_next_upstream
671
+ syn keyword ngxDirectiveThirdParty uwsgi_no_cache
672
+ syn keyword ngxDirectiveThirdParty uwsgi_param
673
+ syn keyword ngxDirectiveThirdParty uwsgi_pass
674
+ syn keyword ngxDirectiveThirdParty uwsgi_pass_header
675
+ syn keyword ngxDirectiveThirdParty uwsgi_pass_request_body
676
+ syn keyword ngxDirectiveThirdParty uwsgi_pass_request_headers
677
+ syn keyword ngxDirectiveThirdParty uwsgi_read_timeout
678
+ syn keyword ngxDirectiveThirdParty uwsgi_send_timeout
679
+ syn keyword ngxDirectiveThirdParty uwsgi_store
680
+ syn keyword ngxDirectiveThirdParty uwsgi_store_access
681
+ syn keyword ngxDirectiveThirdParty uwsgi_string
682
+ syn keyword ngxDirectiveThirdParty uwsgi_temp_file_write_size
683
+ syn keyword ngxDirectiveThirdParty uwsgi_temp_path
684
+
685
+ " highlight
686
+
687
+ hi link ngxComment Comment
688
+ hi link ngxVariable Identifier
689
+ hi link ngxVariableBlock Identifier
690
+ hi link ngxVariableString PreProc
691
+ hi link ngxBlock Normal
692
+ hi link ngxString String
693
+
694
+ hi link ngxBoolean Boolean
695
+ hi link ngxDirectiveBlock Statement
696
+ hi link ngxDirectiveImportant Type
697
+ hi link ngxDirectiveControl Keyword
698
+ hi link ngxDirectiveError Constant
699
+ hi link ngxDirectiveDeprecated Error
700
+ hi link ngxDirective Identifier
701
+ hi link ngxDirectiveThirdParty Special
702
+
703
+ let b:current_syntax = "nginx"