annotate contrib/vim/syntax/nginx.vim @ 6929:3069dd358ba2

Cancelable timers are now preserved if there are other timers. There is no need to cancel timers early if there are other timers blocking shutdown anyway. Preserving such timers allows nginx to continue some periodic work till the shutdown is actually possible. With the new approach, timers with ev->cancelable are simply ignored when checking if there are any timers left during shutdown.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 07 Mar 2017 18:51:15 +0300
parents 7fca6f60d5ca
children 7943298d4ac0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1 " Vim syntax file
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2 " Language: nginx.conf
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
3
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
4 if exists("b:current_syntax")
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
5 finish
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
6 end
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
7
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
8 setlocal iskeyword+=.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
9 setlocal iskeyword+=/
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
10 setlocal iskeyword+=:
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
11
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
12 syn match ngxVariable '\$\(\w\+\|{\w\+}\)'
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
13 syn match ngxVariableBlock '\$\(\w\+\|{\w\+}\)' contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
14 syn match ngxVariableString '\$\(\w\+\|{\w\+}\)' contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
15 syn region ngxBlock start=+^+ end=+{+ skip=+\${+ contains=ngxComment,ngxDirectiveBlock,ngxVariableBlock,ngxString oneline
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
16 syn region ngxString start=+[^:a-zA-Z>!\\@]\z(["']\)+lc=1 end=+\z1+ skip=+\\\\\|\\\z1+ contains=ngxVariableString
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
17 syn match ngxComment ' *#.*$'
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
18
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
19 syn keyword ngxBoolean on
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
20 syn keyword ngxBoolean off
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
21
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
22 syn keyword ngxDirectiveBlock http contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
23 syn keyword ngxDirectiveBlock mail contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
24 syn keyword ngxDirectiveBlock events contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
25 syn keyword ngxDirectiveBlock server contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
26 syn keyword ngxDirectiveBlock types contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
27 syn keyword ngxDirectiveBlock location contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
28 syn keyword ngxDirectiveBlock upstream contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
29 syn keyword ngxDirectiveBlock charset_map contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
30 syn keyword ngxDirectiveBlock limit_except contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
31 syn keyword ngxDirectiveBlock if contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
32 syn keyword ngxDirectiveBlock geo contained
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
33 syn keyword ngxDirectiveBlock map contained
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
34 syn keyword ngxDirectiveBlock split_clients contained
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
35
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
36 syn keyword ngxDirectiveImportant include
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
37 syn keyword ngxDirectiveImportant root
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
38 syn keyword ngxDirectiveImportant server
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
39 syn keyword ngxDirectiveImportant server_name
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
40 syn keyword ngxDirectiveImportant listen contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
41 syn region ngxDirectiveImportantListen matchgroup=ngxDirectiveImportant start=+listen+ skip=+\\\\\|\\\;+ end=+;+he=e-1 contains=ngxListenOptions,ngxString
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
42 syn keyword ngxDirectiveImportant internal
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
43 syn keyword ngxDirectiveImportant proxy_pass
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
44 syn keyword ngxDirectiveImportant memcached_pass
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
45 syn keyword ngxDirectiveImportant fastcgi_pass
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
46 syn keyword ngxDirectiveImportant scgi_pass
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
47 syn keyword ngxDirectiveImportant uwsgi_pass
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
48 syn keyword ngxDirectiveImportant try_files
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
49
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
50 syn keyword ngxListenOptions default_server contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
51 syn keyword ngxListenOptions ssl contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
52 syn keyword ngxListenOptions http2 contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
53 syn keyword ngxListenOptions spdy contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
54 syn keyword ngxListenOptions proxy_protocol contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
55 syn keyword ngxListenOptions setfib contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
56 syn keyword ngxListenOptions fastopen contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
57 syn keyword ngxListenOptions backlog contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
58 syn keyword ngxListenOptions rcvbuf contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
59 syn keyword ngxListenOptions sndbuf contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
60 syn keyword ngxListenOptions accept_filter contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
61 syn keyword ngxListenOptions deferred contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
62 syn keyword ngxListenOptions bind contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
63 syn keyword ngxListenOptions ipv6only contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
64 syn keyword ngxListenOptions reuseport contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
65 syn keyword ngxListenOptions so_keepalive contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
66 syn keyword ngxListenOptions keepidle contained
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
67
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
68 syn keyword ngxDirectiveControl break
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
69 syn keyword ngxDirectiveControl return
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
70 syn keyword ngxDirectiveControl rewrite
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
71 syn keyword ngxDirectiveControl set
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
72
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
73 syn keyword ngxDirectiveError error_page
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
74 syn keyword ngxDirectiveError post_action
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
75
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
76 syn keyword ngxDirectiveDeprecated connections
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
77 syn keyword ngxDirectiveDeprecated imap
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
78 syn keyword ngxDirectiveDeprecated limit_zone
6484
4b420f9c4c5d Removed the prototype mysql module.
Ruslan Ermilov <ru@nginx.com>
parents: 5893
diff changeset
79 syn keyword ngxDirectiveDeprecated mysql_test
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
80 syn keyword ngxDirectiveDeprecated open_file_cache_retest
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
81 syn keyword ngxDirectiveDeprecated optimize_server_names
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
82 syn keyword ngxDirectiveDeprecated satisfy_any
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
83 syn keyword ngxDirectiveDeprecated so_keepalive
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
84
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
85 syn keyword ngxDirective absolute_redirect
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
86 syn keyword ngxDirective accept_mutex
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
87 syn keyword ngxDirective accept_mutex_delay
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
88 syn keyword ngxDirective acceptex_read
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
89 syn keyword ngxDirective access_log
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
90 syn keyword ngxDirective add_after_body
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
91 syn keyword ngxDirective add_before_body
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
92 syn keyword ngxDirective add_header
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
93 syn keyword ngxDirective addition_types
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
94 syn keyword ngxDirective aio
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
95 syn keyword ngxDirective aio_write
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
96 syn keyword ngxDirective alias
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
97 syn keyword ngxDirective allow
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
98 syn keyword ngxDirective ancient_browser
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
99 syn keyword ngxDirective ancient_browser_value
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
100 syn keyword ngxDirective auth_basic
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
101 syn keyword ngxDirective auth_basic_user_file
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
102 syn keyword ngxDirective auth_http
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
103 syn keyword ngxDirective auth_http_header
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
104 syn keyword ngxDirective auth_http_pass_client_cert
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
105 syn keyword ngxDirective auth_http_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
106 syn keyword ngxDirective auth_jwt
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
107 syn keyword ngxDirective auth_jwt_key_file
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
108 syn keyword ngxDirective auth_request
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
109 syn keyword ngxDirective auth_request_set
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
110 syn keyword ngxDirective autoindex
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
111 syn keyword ngxDirective autoindex_exact_size
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
112 syn keyword ngxDirective autoindex_format
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
113 syn keyword ngxDirective autoindex_localtime
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
114 syn keyword ngxDirective charset
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
115 syn keyword ngxDirective charset_map
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
116 syn keyword ngxDirective charset_types
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
117 syn keyword ngxDirective chunked_transfer_encoding
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
118 syn keyword ngxDirective client_body_buffer_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
119 syn keyword ngxDirective client_body_in_file_only
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
120 syn keyword ngxDirective client_body_in_single_buffer
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
121 syn keyword ngxDirective client_body_temp_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
122 syn keyword ngxDirective client_body_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
123 syn keyword ngxDirective client_header_buffer_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
124 syn keyword ngxDirective client_header_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
125 syn keyword ngxDirective client_max_body_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
126 syn keyword ngxDirective connection_pool_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
127 syn keyword ngxDirective create_full_put_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
128 syn keyword ngxDirective daemon
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
129 syn keyword ngxDirective dav_access
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
130 syn keyword ngxDirective dav_methods
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
131 syn keyword ngxDirective debug_connection
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
132 syn keyword ngxDirective debug_points
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
133 syn keyword ngxDirective default_type
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
134 syn keyword ngxDirective degradation
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
135 syn keyword ngxDirective degrade
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
136 syn keyword ngxDirective deny
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
137 syn keyword ngxDirective devpoll_changes
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
138 syn keyword ngxDirective devpoll_events
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
139 syn keyword ngxDirective directio
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
140 syn keyword ngxDirective directio_alignment
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
141 syn keyword ngxDirective disable_symlinks
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
142 syn keyword ngxDirective empty_gif
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
143 syn keyword ngxDirective env
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
144 syn keyword ngxDirective epoll_events
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
145 syn keyword ngxDirective error_log
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
146 syn keyword ngxDirective etag
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
147 syn keyword ngxDirective eventport_events
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
148 syn keyword ngxDirective expires
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
149 syn keyword ngxDirective f4f
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
150 syn keyword ngxDirective f4f_buffer_size
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
151 syn keyword ngxDirective fastcgi_bind
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
152 syn keyword ngxDirective fastcgi_buffer_size
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
153 syn keyword ngxDirective fastcgi_buffering
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
154 syn keyword ngxDirective fastcgi_buffers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
155 syn keyword ngxDirective fastcgi_busy_buffers_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
156 syn keyword ngxDirective fastcgi_cache
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
157 syn keyword ngxDirective fastcgi_cache_bypass
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
158 syn keyword ngxDirective fastcgi_cache_key
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
159 syn keyword ngxDirective fastcgi_cache_lock
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
160 syn keyword ngxDirective fastcgi_cache_lock_age
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
161 syn keyword ngxDirective fastcgi_cache_lock_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
162 syn keyword ngxDirective fastcgi_cache_max_range_offset
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
163 syn keyword ngxDirective fastcgi_cache_methods
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
164 syn keyword ngxDirective fastcgi_cache_min_uses
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
165 syn keyword ngxDirective fastcgi_cache_path
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
166 syn keyword ngxDirective fastcgi_cache_purge
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
167 syn keyword ngxDirective fastcgi_cache_revalidate
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
168 syn keyword ngxDirective fastcgi_cache_use_stale
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
169 syn keyword ngxDirective fastcgi_cache_valid
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
170 syn keyword ngxDirective fastcgi_catch_stderr
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
171 syn keyword ngxDirective fastcgi_connect_timeout
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
172 syn keyword ngxDirective fastcgi_force_ranges
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
173 syn keyword ngxDirective fastcgi_hide_header
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
174 syn keyword ngxDirective fastcgi_ignore_client_abort
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
175 syn keyword ngxDirective fastcgi_ignore_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
176 syn keyword ngxDirective fastcgi_index
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
177 syn keyword ngxDirective fastcgi_intercept_errors
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
178 syn keyword ngxDirective fastcgi_keep_conn
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
179 syn keyword ngxDirective fastcgi_limit_rate
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
180 syn keyword ngxDirective fastcgi_max_temp_file_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
181 syn keyword ngxDirective fastcgi_next_upstream
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
182 syn keyword ngxDirective fastcgi_next_upstream_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
183 syn keyword ngxDirective fastcgi_next_upstream_tries
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
184 syn keyword ngxDirective fastcgi_no_cache
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
185 syn keyword ngxDirective fastcgi_param
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
186 syn keyword ngxDirective fastcgi_pass_header
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
187 syn keyword ngxDirective fastcgi_pass_request_body
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
188 syn keyword ngxDirective fastcgi_pass_request_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
189 syn keyword ngxDirective fastcgi_read_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
190 syn keyword ngxDirective fastcgi_request_buffering
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
191 syn keyword ngxDirective fastcgi_send_lowat
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
192 syn keyword ngxDirective fastcgi_send_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
193 syn keyword ngxDirective fastcgi_split_path_info
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
194 syn keyword ngxDirective fastcgi_store
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
195 syn keyword ngxDirective fastcgi_store_access
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
196 syn keyword ngxDirective fastcgi_temp_file_write_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
197 syn keyword ngxDirective fastcgi_temp_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
198 syn keyword ngxDirective flv
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
199 syn keyword ngxDirective geoip_city
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
200 syn keyword ngxDirective geoip_country
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
201 syn keyword ngxDirective geoip_org
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
202 syn keyword ngxDirective geoip_proxy
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
203 syn keyword ngxDirective geoip_proxy_recursive
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
204 syn keyword ngxDirective google_perftools_profiles
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
205 syn keyword ngxDirective gunzip
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
206 syn keyword ngxDirective gunzip_buffers
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
207 syn keyword ngxDirective gzip
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
208 syn keyword ngxDirective gzip_buffers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
209 syn keyword ngxDirective gzip_comp_level
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
210 syn keyword ngxDirective gzip_disable
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
211 syn keyword ngxDirective gzip_hash
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
212 syn keyword ngxDirective gzip_http_version
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
213 syn keyword ngxDirective gzip_min_length
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
214 syn keyword ngxDirective gzip_no_buffer
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
215 syn keyword ngxDirective gzip_proxied
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
216 syn keyword ngxDirective gzip_static
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
217 syn keyword ngxDirective gzip_types
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
218 syn keyword ngxDirective gzip_vary
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
219 syn keyword ngxDirective gzip_window
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
220 syn keyword ngxDirective hash
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
221 syn keyword ngxDirective health_check
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
222 syn keyword ngxDirective health_check_timeout
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
223 syn keyword ngxDirective hls
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
224 syn keyword ngxDirective hls_buffers
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
225 syn keyword ngxDirective hls_forward_args
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
226 syn keyword ngxDirective hls_fragment
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
227 syn keyword ngxDirective hls_mp4_buffer_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
228 syn keyword ngxDirective hls_mp4_max_buffer_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
229 syn keyword ngxDirective http2_chunk_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
230 syn keyword ngxDirective http2_body_preread_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
231 syn keyword ngxDirective http2_idle_timeout
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
232 syn keyword ngxDirective http2_max_concurrent_streams
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
233 syn keyword ngxDirective http2_max_field_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
234 syn keyword ngxDirective http2_max_header_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
235 syn keyword ngxDirective http2_max_requests
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
236 syn keyword ngxDirective http2_recv_buffer_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
237 syn keyword ngxDirective http2_recv_timeout
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
238 syn keyword ngxDirective if_modified_since
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
239 syn keyword ngxDirective ignore_invalid_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
240 syn keyword ngxDirective image_filter
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
241 syn keyword ngxDirective image_filter_buffer
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
242 syn keyword ngxDirective image_filter_interlace
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
243 syn keyword ngxDirective image_filter_jpeg_quality
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
244 syn keyword ngxDirective image_filter_sharpen
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
245 syn keyword ngxDirective image_filter_transparency
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
246 syn keyword ngxDirective image_filter_webp_quality
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
247 syn keyword ngxDirective imap_auth
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
248 syn keyword ngxDirective imap_capabilities
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
249 syn keyword ngxDirective imap_client_buffer
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
250 syn keyword ngxDirective index
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
251 syn keyword ngxDirective iocp_threads
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
252 syn keyword ngxDirective ip_hash
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
253 syn keyword ngxDirective js_access
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
254 syn keyword ngxDirective js_content
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
255 syn keyword ngxDirective js_filter
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
256 syn keyword ngxDirective js_include
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
257 syn keyword ngxDirective js_preread
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
258 syn keyword ngxDirective js_set
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
259 syn keyword ngxDirective keepalive
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
260 syn keyword ngxDirective keepalive_disable
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
261 syn keyword ngxDirective keepalive_requests
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
262 syn keyword ngxDirective keepalive_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
263 syn keyword ngxDirective kqueue_changes
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
264 syn keyword ngxDirective kqueue_events
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
265 syn keyword ngxDirective large_client_header_buffers
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
266 syn keyword ngxDirective least_conn
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
267 syn keyword ngxDirective least_time
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
268 syn keyword ngxDirective limit_conn
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
269 syn keyword ngxDirective limit_conn_log_level
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
270 syn keyword ngxDirective limit_conn_status
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
271 syn keyword ngxDirective limit_conn_zone
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
272 syn keyword ngxDirective limit_rate
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
273 syn keyword ngxDirective limit_rate_after
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
274 syn keyword ngxDirective limit_req
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
275 syn keyword ngxDirective limit_req_log_level
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
276 syn keyword ngxDirective limit_req_status
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
277 syn keyword ngxDirective limit_req_zone
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
278 syn keyword ngxDirective lingering_close
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
279 syn keyword ngxDirective lingering_time
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
280 syn keyword ngxDirective lingering_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
281 syn keyword ngxDirective load_module
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
282 syn keyword ngxDirective lock_file
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
283 syn keyword ngxDirective log_format
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
284 syn keyword ngxDirective log_not_found
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
285 syn keyword ngxDirective log_subrequest
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
286 syn keyword ngxDirective map_hash_bucket_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
287 syn keyword ngxDirective map_hash_max_size
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
288 syn keyword ngxDirective match
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
289 syn keyword ngxDirective master_process
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
290 syn keyword ngxDirective max_ranges
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
291 syn keyword ngxDirective memcached_bind
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
292 syn keyword ngxDirective memcached_buffer_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
293 syn keyword ngxDirective memcached_connect_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
294 syn keyword ngxDirective memcached_force_ranges
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
295 syn keyword ngxDirective memcached_gzip_flag
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
296 syn keyword ngxDirective memcached_next_upstream
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
297 syn keyword ngxDirective memcached_next_upstream_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
298 syn keyword ngxDirective memcached_next_upstream_tries
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
299 syn keyword ngxDirective memcached_read_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
300 syn keyword ngxDirective memcached_send_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
301 syn keyword ngxDirective merge_slashes
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
302 syn keyword ngxDirective min_delete_depth
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
303 syn keyword ngxDirective modern_browser
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
304 syn keyword ngxDirective modern_browser_value
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
305 syn keyword ngxDirective mp4
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
306 syn keyword ngxDirective mp4_buffer_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
307 syn keyword ngxDirective mp4_max_buffer_size
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
308 syn keyword ngxDirective mp4_limit_rate
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
309 syn keyword ngxDirective mp4_limit_rate_after
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
310 syn keyword ngxDirective msie_padding
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
311 syn keyword ngxDirective msie_refresh
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
312 syn keyword ngxDirective multi_accept
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
313 syn keyword ngxDirective ntlm
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
314 syn keyword ngxDirective open_file_cache
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
315 syn keyword ngxDirective open_file_cache_errors
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
316 syn keyword ngxDirective open_file_cache_events
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
317 syn keyword ngxDirective open_file_cache_min_uses
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
318 syn keyword ngxDirective open_file_cache_valid
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
319 syn keyword ngxDirective open_log_file_cache
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
320 syn keyword ngxDirective output_buffers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
321 syn keyword ngxDirective override_charset
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
322 syn keyword ngxDirective pcre_jit
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
323 syn keyword ngxDirective perl
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
324 syn keyword ngxDirective perl_modules
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
325 syn keyword ngxDirective perl_require
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
326 syn keyword ngxDirective perl_set
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
327 syn keyword ngxDirective pid
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
328 syn keyword ngxDirective pop3_auth
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
329 syn keyword ngxDirective pop3_capabilities
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
330 syn keyword ngxDirective port_in_redirect
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
331 syn keyword ngxDirective post_acceptex
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
332 syn keyword ngxDirective postpone_gzipping
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
333 syn keyword ngxDirective postpone_output
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
334 syn keyword ngxDirective preread_buffer_size
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
335 syn keyword ngxDirective preread_timeout
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
336 syn keyword ngxDirective protocol nextgroup=ngxMailProtocol skipwhite
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
337 syn keyword ngxMailProtocol imap pop3 smtp contained
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
338 syn keyword ngxDirective proxy
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
339 syn keyword ngxDirective proxy_bind
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
340 syn keyword ngxDirective proxy_buffer
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
341 syn keyword ngxDirective proxy_buffer_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
342 syn keyword ngxDirective proxy_buffering
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
343 syn keyword ngxDirective proxy_buffers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
344 syn keyword ngxDirective proxy_busy_buffers_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
345 syn keyword ngxDirective proxy_cache
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
346 syn keyword ngxDirective proxy_cache_bypass
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
347 syn keyword ngxDirective proxy_cache_convert_head
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
348 syn keyword ngxDirective proxy_cache_key
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
349 syn keyword ngxDirective proxy_cache_lock
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
350 syn keyword ngxDirective proxy_cache_lock_age
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
351 syn keyword ngxDirective proxy_cache_lock_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
352 syn keyword ngxDirective proxy_cache_max_range_offset
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
353 syn keyword ngxDirective proxy_cache_methods
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
354 syn keyword ngxDirective proxy_cache_min_uses
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
355 syn keyword ngxDirective proxy_cache_path
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
356 syn keyword ngxDirective proxy_cache_purge
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
357 syn keyword ngxDirective proxy_cache_revalidate
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
358 syn keyword ngxDirective proxy_cache_use_stale
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
359 syn keyword ngxDirective proxy_cache_valid
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
360 syn keyword ngxDirective proxy_connect_timeout
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
361 syn keyword ngxDirective proxy_cookie_domain
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
362 syn keyword ngxDirective proxy_cookie_path
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
363 syn keyword ngxDirective proxy_download_rate
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
364 syn keyword ngxDirective proxy_force_ranges
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
365 syn keyword ngxDirective proxy_headers_hash_bucket_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
366 syn keyword ngxDirective proxy_headers_hash_max_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
367 syn keyword ngxDirective proxy_hide_header
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
368 syn keyword ngxDirective proxy_http_version
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
369 syn keyword ngxDirective proxy_ignore_client_abort
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
370 syn keyword ngxDirective proxy_ignore_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
371 syn keyword ngxDirective proxy_intercept_errors
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
372 syn keyword ngxDirective proxy_limit_rate
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
373 syn keyword ngxDirective proxy_max_temp_file_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
374 syn keyword ngxDirective proxy_method
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
375 syn keyword ngxDirective proxy_next_upstream
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
376 syn keyword ngxDirective proxy_next_upstream_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
377 syn keyword ngxDirective proxy_next_upstream_tries
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
378 syn keyword ngxDirective proxy_no_cache
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
379 syn keyword ngxDirective proxy_pass_error_message
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
380 syn keyword ngxDirective proxy_pass_header
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
381 syn keyword ngxDirective proxy_pass_request_body
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
382 syn keyword ngxDirective proxy_pass_request_headers
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
383 syn keyword ngxDirective proxy_protocol
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
384 syn keyword ngxDirective proxy_protocol_timeout
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
385 syn keyword ngxDirective proxy_read_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
386 syn keyword ngxDirective proxy_redirect
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
387 syn keyword ngxDirective proxy_request_buffering
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
388 syn keyword ngxDirective proxy_responses
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
389 syn keyword ngxDirective proxy_send_lowat
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
390 syn keyword ngxDirective proxy_send_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
391 syn keyword ngxDirective proxy_set_body
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
392 syn keyword ngxDirective proxy_set_header
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
393 syn keyword ngxDirective proxy_ssl_certificate
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
394 syn keyword ngxDirective proxy_ssl_certificate_key
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
395 syn keyword ngxDirective proxy_ssl_ciphers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
396 syn keyword ngxDirective proxy_ssl_crl
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
397 syn keyword ngxDirective proxy_ssl_name
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
398 syn keyword ngxDirective proxy_ssl_password_file
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
399 syn keyword ngxDirective proxy_ssl_protocols nextgroup=ngxSSLProtocol skipwhite
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
400 syn keyword ngxDirective proxy_ssl_server_name
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
401 syn keyword ngxDirective proxy_ssl_session_reuse
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
402 syn keyword ngxDirective proxy_ssl_trusted_certificate
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
403 syn keyword ngxDirective proxy_ssl_verify
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
404 syn keyword ngxDirective proxy_ssl_verify_depth
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
405 syn keyword ngxDirective proxy_store
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
406 syn keyword ngxDirective proxy_store_access
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
407 syn keyword ngxDirective proxy_temp_file_write_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
408 syn keyword ngxDirective proxy_temp_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
409 syn keyword ngxDirective proxy_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
410 syn keyword ngxDirective proxy_upload_rate
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
411 syn keyword ngxDirective queue
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
412 syn keyword ngxDirective random_index
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
413 syn keyword ngxDirective read_ahead
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
414 syn keyword ngxDirective real_ip_header
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
415 syn keyword ngxDirective real_ip_recursive
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
416 syn keyword ngxDirective recursive_error_pages
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
417 syn keyword ngxDirective referer_hash_bucket_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
418 syn keyword ngxDirective referer_hash_max_size
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
419 syn keyword ngxDirective request_pool_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
420 syn keyword ngxDirective reset_timedout_connection
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
421 syn keyword ngxDirective resolver
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
422 syn keyword ngxDirective resolver_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
423 syn keyword ngxDirective rewrite_log
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
424 syn keyword ngxDirective rtsig_overflow_events
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
425 syn keyword ngxDirective rtsig_overflow_test
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
426 syn keyword ngxDirective rtsig_overflow_threshold
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
427 syn keyword ngxDirective rtsig_signo
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
428 syn keyword ngxDirective satisfy
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
429 syn keyword ngxDirective scgi_bind
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
430 syn keyword ngxDirective scgi_buffer_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
431 syn keyword ngxDirective scgi_buffering
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
432 syn keyword ngxDirective scgi_buffers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
433 syn keyword ngxDirective scgi_busy_buffers_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
434 syn keyword ngxDirective scgi_cache
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
435 syn keyword ngxDirective scgi_cache_bypass
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
436 syn keyword ngxDirective scgi_cache_key
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
437 syn keyword ngxDirective scgi_cache_lock
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
438 syn keyword ngxDirective scgi_cache_lock_age
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
439 syn keyword ngxDirective scgi_cache_lock_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
440 syn keyword ngxDirective scgi_cache_max_range_offset
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
441 syn keyword ngxDirective scgi_cache_methods
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
442 syn keyword ngxDirective scgi_cache_min_uses
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
443 syn keyword ngxDirective scgi_cache_path
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
444 syn keyword ngxDirective scgi_cache_purge
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
445 syn keyword ngxDirective scgi_cache_revalidate
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
446 syn keyword ngxDirective scgi_cache_use_stale
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
447 syn keyword ngxDirective scgi_cache_valid
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
448 syn keyword ngxDirective scgi_connect_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
449 syn keyword ngxDirective scgi_force_ranges
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
450 syn keyword ngxDirective scgi_hide_header
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
451 syn keyword ngxDirective scgi_ignore_client_abort
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
452 syn keyword ngxDirective scgi_ignore_headers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
453 syn keyword ngxDirective scgi_intercept_errors
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
454 syn keyword ngxDirective scgi_limit_rate
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
455 syn keyword ngxDirective scgi_max_temp_file_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
456 syn keyword ngxDirective scgi_next_upstream
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
457 syn keyword ngxDirective scgi_next_upstream_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
458 syn keyword ngxDirective scgi_next_upstream_tries
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
459 syn keyword ngxDirective scgi_no_cache
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
460 syn keyword ngxDirective scgi_param
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
461 syn keyword ngxDirective scgi_pass_header
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
462 syn keyword ngxDirective scgi_pass_request_body
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
463 syn keyword ngxDirective scgi_pass_request_headers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
464 syn keyword ngxDirective scgi_read_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
465 syn keyword ngxDirective scgi_request_buffering
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
466 syn keyword ngxDirective scgi_send_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
467 syn keyword ngxDirective scgi_store
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
468 syn keyword ngxDirective scgi_store_access
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
469 syn keyword ngxDirective scgi_temp_file_write_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
470 syn keyword ngxDirective scgi_temp_path
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
471 syn keyword ngxDirective secure_link
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
472 syn keyword ngxDirective secure_link_md5
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
473 syn keyword ngxDirective secure_link_secret
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
474 syn keyword ngxDirective send_lowat
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
475 syn keyword ngxDirective send_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
476 syn keyword ngxDirective sendfile
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
477 syn keyword ngxDirective sendfile_max_chunk
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
478 syn keyword ngxDirective server_name_in_redirect
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
479 syn keyword ngxDirective server_names_hash_bucket_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
480 syn keyword ngxDirective server_names_hash_max_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
481 syn keyword ngxDirective server_tokens
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
482 syn keyword ngxDirective session_log
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
483 syn keyword ngxDirective session_log_format
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
484 syn keyword ngxDirective session_log_zone
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
485 syn keyword ngxDirective set_real_ip_from
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
486 syn keyword ngxDirective slice
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
487 syn keyword ngxDirective smtp_auth
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
488 syn keyword ngxDirective smtp_capabilities
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
489 syn keyword ngxDirective smtp_client_buffer
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
490 syn keyword ngxDirective smtp_greeting_delay
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
491 syn keyword ngxDirective source_charset
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
492 syn keyword ngxDirective spdy_chunk_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
493 syn keyword ngxDirective spdy_headers_comp
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
494 syn keyword ngxDirective spdy_keepalive_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
495 syn keyword ngxDirective spdy_max_concurrent_streams
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
496 syn keyword ngxDirective spdy_pool_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
497 syn keyword ngxDirective spdy_recv_buffer_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
498 syn keyword ngxDirective spdy_recv_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
499 syn keyword ngxDirective spdy_streams_index_size
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
500 syn keyword ngxDirective ssi
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
501 syn keyword ngxDirective ssi_ignore_recycled_buffers
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
502 syn keyword ngxDirective ssi_last_modified
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
503 syn keyword ngxDirective ssi_min_file_chunk
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
504 syn keyword ngxDirective ssi_silent_errors
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
505 syn keyword ngxDirective ssi_types
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
506 syn keyword ngxDirective ssi_value_length
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
507 syn keyword ngxDirective ssl
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
508 syn keyword ngxDirective ssl_buffer_size
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
509 syn keyword ngxDirective ssl_certificate
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
510 syn keyword ngxDirective ssl_certificate_key
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
511 syn keyword ngxDirective ssl_ciphers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
512 syn keyword ngxDirective ssl_client_certificate
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
513 syn keyword ngxDirective ssl_crl
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
514 syn keyword ngxDirective ssl_dhparam
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
515 syn keyword ngxDirective ssl_ecdh_curve
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
516 syn keyword ngxDirective ssl_engine
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
517 syn keyword ngxDirective ssl_handshake_timeout
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
518 syn keyword ngxDirective ssl_password_file
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
519 syn keyword ngxDirective ssl_prefer_server_ciphers
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
520 syn keyword ngxDirective ssl_preread
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
521 syn keyword ngxDirective ssl_protocols nextgroup=ngxSSLProtocol skipwhite
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
522 syn keyword ngxSSLProtocol SSLv2 SSLv3 TLSv1 TLSv1.1 TLSv1.2 contained nextgroup=ngxSSLProtocol skipwhite
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
523 syn keyword ngxDirective ssl_session_cache
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
524 syn keyword ngxDirective ssl_session_ticket_key
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
525 syn keyword ngxDirective ssl_session_tickets
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
526 syn keyword ngxDirective ssl_session_timeout
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
527 syn keyword ngxDirective ssl_stapling
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
528 syn keyword ngxDirective ssl_stapling_file
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
529 syn keyword ngxDirective ssl_stapling_responder
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
530 syn keyword ngxDirective ssl_stapling_verify
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
531 syn keyword ngxDirective ssl_trusted_certificate
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
532 syn keyword ngxDirective ssl_verify_client
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
533 syn keyword ngxDirective ssl_verify_depth
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
534 syn keyword ngxDirective starttls
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
535 syn keyword ngxDirective state
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
536 syn keyword ngxDirective status
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
537 syn keyword ngxDirective status_format
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
538 syn keyword ngxDirective status_zone
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
539 syn keyword ngxDirective sticky
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
540 syn keyword ngxDirective sticky_cookie_insert
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
541 syn keyword ngxDirective stub_status
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
542 syn keyword ngxDirective sub_filter
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
543 syn keyword ngxDirective sub_filter_last_modified
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
544 syn keyword ngxDirective sub_filter_once
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
545 syn keyword ngxDirective sub_filter_types
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
546 syn keyword ngxDirective tcp_nodelay
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
547 syn keyword ngxDirective tcp_nopush
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
548 syn keyword ngxDirective thread_pool
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
549 syn keyword ngxDirective thread_stack_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
550 syn keyword ngxDirective timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
551 syn keyword ngxDirective timer_resolution
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
552 syn keyword ngxDirective types_hash_bucket_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
553 syn keyword ngxDirective types_hash_max_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
554 syn keyword ngxDirective underscores_in_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
555 syn keyword ngxDirective uninitialized_variable_warn
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
556 syn keyword ngxDirective upstream_conf
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
557 syn keyword ngxDirective use
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
558 syn keyword ngxDirective user
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
559 syn keyword ngxDirective userid
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
560 syn keyword ngxDirective userid_domain
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
561 syn keyword ngxDirective userid_expires
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
562 syn keyword ngxDirective userid_mark
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
563 syn keyword ngxDirective userid_name
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
564 syn keyword ngxDirective userid_p3p
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
565 syn keyword ngxDirective userid_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
566 syn keyword ngxDirective userid_service
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
567 syn keyword ngxDirective uwsgi_bind
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
568 syn keyword ngxDirective uwsgi_buffer_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
569 syn keyword ngxDirective uwsgi_buffering
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
570 syn keyword ngxDirective uwsgi_buffers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
571 syn keyword ngxDirective uwsgi_busy_buffers_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
572 syn keyword ngxDirective uwsgi_cache
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
573 syn keyword ngxDirective uwsgi_cache_bypass
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
574 syn keyword ngxDirective uwsgi_cache_key
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
575 syn keyword ngxDirective uwsgi_cache_lock
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
576 syn keyword ngxDirective uwsgi_cache_lock_age
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
577 syn keyword ngxDirective uwsgi_cache_lock_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
578 syn keyword ngxDirective uwsgi_cache_methods
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
579 syn keyword ngxDirective uwsgi_cache_min_uses
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
580 syn keyword ngxDirective uwsgi_cache_path
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
581 syn keyword ngxDirective uwsgi_cache_purge
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
582 syn keyword ngxDirective uwsgi_cache_revalidate
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
583 syn keyword ngxDirective uwsgi_cache_use_stale
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
584 syn keyword ngxDirective uwsgi_cache_valid
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
585 syn keyword ngxDirective uwsgi_connect_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
586 syn keyword ngxDirective uwsgi_force_ranges
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
587 syn keyword ngxDirective uwsgi_hide_header
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
588 syn keyword ngxDirective uwsgi_ignore_client_abort
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
589 syn keyword ngxDirective uwsgi_ignore_headers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
590 syn keyword ngxDirective uwsgi_intercept_errors
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
591 syn keyword ngxDirective uwsgi_limit_rate
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
592 syn keyword ngxDirective uwsgi_max_temp_file_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
593 syn keyword ngxDirective uwsgi_modifier1
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
594 syn keyword ngxDirective uwsgi_modifier2
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
595 syn keyword ngxDirective uwsgi_next_upstream
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
596 syn keyword ngxDirective uwsgi_next_upstream_timeout
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
597 syn keyword ngxDirective uwsgi_next_upstream_tries
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
598 syn keyword ngxDirective uwsgi_no_cache
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
599 syn keyword ngxDirective uwsgi_param
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
600 syn keyword ngxDirective uwsgi_pass
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
601 syn keyword ngxDirective uwsgi_pass_header
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
602 syn keyword ngxDirective uwsgi_pass_request_body
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
603 syn keyword ngxDirective uwsgi_pass_request_headers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
604 syn keyword ngxDirective uwsgi_read_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
605 syn keyword ngxDirective uwsgi_request_buffering
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
606 syn keyword ngxDirective uwsgi_send_timeout
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
607 syn keyword ngxDirective uwsgi_ssl_certificate
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
608 syn keyword ngxDirective uwsgi_ssl_certificate_key
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
609 syn keyword ngxDirective uwsgi_ssl_ciphers
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
610 syn keyword ngxDirective uwsgi_ssl_crl
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
611 syn keyword ngxDirective uwsgi_ssl_name
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
612 syn keyword ngxDirective uwsgi_ssl_password_file
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
613 syn keyword ngxDirective uwsgi_ssl_protocols nextgroup=ngxSSLProtocol skipwhite
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
614 syn keyword ngxDirective uwsgi_ssl_server_name
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
615 syn keyword ngxDirective uwsgi_ssl_session_reuse
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
616 syn keyword ngxDirective uwsgi_ssl_trusted_certificate
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
617 syn keyword ngxDirective uwsgi_ssl_verify
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
618 syn keyword ngxDirective uwsgi_ssl_verify_depth
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
619 syn keyword ngxDirective uwsgi_store
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
620 syn keyword ngxDirective uwsgi_store_access
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
621 syn keyword ngxDirective uwsgi_string
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
622 syn keyword ngxDirective uwsgi_temp_file_write_size
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
623 syn keyword ngxDirective uwsgi_temp_path
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
624 syn keyword ngxDirective valid_referers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
625 syn keyword ngxDirective variables_hash_bucket_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
626 syn keyword ngxDirective variables_hash_max_size
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
627 syn keyword ngxDirective worker_aio_requests
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
628 syn keyword ngxDirective worker_connections
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
629 syn keyword ngxDirective worker_cpu_affinity
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
630 syn keyword ngxDirective worker_priority
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
631 syn keyword ngxDirective worker_processes
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
632 syn keyword ngxDirective worker_rlimit_core
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
633 syn keyword ngxDirective worker_rlimit_nofile
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
634 syn keyword ngxDirective worker_rlimit_sigpending
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
635 syn keyword ngxDirective worker_threads
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
636 syn keyword ngxDirective working_directory
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
637 syn keyword ngxDirective xclient
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
638 syn keyword ngxDirective xml_entities
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
639 syn keyword ngxDirective xslt_last_modified
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
640 syn keyword ngxDirective xslt_param
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
641 syn keyword ngxDirective xslt_string_param
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
642 syn keyword ngxDirective xslt_stylesheet
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
643 syn keyword ngxDirective xslt_types
6919
2cb489dbb628 Contrib: vim syntax, update core module directives.
othree <othree@gmail.com>
parents: 6918
diff changeset
644 syn keyword ngxDirective zone
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
645
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
646 " 3rd party module list:
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
647 " https://www.nginx.com/resources/wiki/modules/
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
648
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
649 " Accept Language Module <https://www.nginx.com/resources/wiki/modules/accept_language/>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
650 " Parses the Accept-Language header and gives the most suitable locale from a list of supported locales.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
651 syn keyword ngxDirectiveThirdParty set_from_accept_language
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
652
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
653 " Access Key Module (DEPRECATED) <http://wiki.nginx.org/NginxHttpAccessKeyModule>
5893
fa4161fe8254 Contrib: add more directives to vim syntax.
Peter Wu <peter@lekensteyn.nl>
parents: 5460
diff changeset
654 " Denies access unless the request URL contains an access key.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
655 syn keyword ngxDirectiveDeprecated accesskey
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
656 syn keyword ngxDirectiveDeprecated accesskey_arg
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
657 syn keyword ngxDirectiveDeprecated accesskey_hashmethod
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
658 syn keyword ngxDirectiveDeprecated accesskey_signature
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
659
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
660 " Asynchronous FastCGI Module <https://github.com/rsms/afcgi>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
661 " Primarily a modified version of the Nginx FastCGI module which implements multiplexing of connections, allowing a single FastCGI server to handle many concurrent requests.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
662 " syn keyword ngxDirectiveThirdParty fastcgi_bind
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
663 " syn keyword ngxDirectiveThirdParty fastcgi_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
664 " syn keyword ngxDirectiveThirdParty fastcgi_buffers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
665 " syn keyword ngxDirectiveThirdParty fastcgi_busy_buffers_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
666 " syn keyword ngxDirectiveThirdParty fastcgi_cache
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
667 " syn keyword ngxDirectiveThirdParty fastcgi_cache_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
668 " syn keyword ngxDirectiveThirdParty fastcgi_cache_methods
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
669 " syn keyword ngxDirectiveThirdParty fastcgi_cache_min_uses
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
670 " syn keyword ngxDirectiveThirdParty fastcgi_cache_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
671 " syn keyword ngxDirectiveThirdParty fastcgi_cache_use_stale
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
672 " syn keyword ngxDirectiveThirdParty fastcgi_cache_valid
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
673 " syn keyword ngxDirectiveThirdParty fastcgi_catch_stderr
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
674 " syn keyword ngxDirectiveThirdParty fastcgi_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
675 " syn keyword ngxDirectiveThirdParty fastcgi_hide_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
676 " syn keyword ngxDirectiveThirdParty fastcgi_ignore_client_abort
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
677 " syn keyword ngxDirectiveThirdParty fastcgi_ignore_headers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
678 " syn keyword ngxDirectiveThirdParty fastcgi_index
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
679 " syn keyword ngxDirectiveThirdParty fastcgi_intercept_errors
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
680 " syn keyword ngxDirectiveThirdParty fastcgi_max_temp_file_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
681 " syn keyword ngxDirectiveThirdParty fastcgi_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
682 " syn keyword ngxDirectiveThirdParty fastcgi_param
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
683 " syn keyword ngxDirectiveThirdParty fastcgi_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
684 " syn keyword ngxDirectiveThirdParty fastcgi_pass_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
685 " syn keyword ngxDirectiveThirdParty fastcgi_pass_request_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
686 " syn keyword ngxDirectiveThirdParty fastcgi_pass_request_headers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
687 " syn keyword ngxDirectiveThirdParty fastcgi_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
688 " syn keyword ngxDirectiveThirdParty fastcgi_send_lowat
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
689 " syn keyword ngxDirectiveThirdParty fastcgi_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
690 " syn keyword ngxDirectiveThirdParty fastcgi_split_path_info
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
691 " syn keyword ngxDirectiveThirdParty fastcgi_store
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
692 " syn keyword ngxDirectiveThirdParty fastcgi_store_access
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
693 " syn keyword ngxDirectiveThirdParty fastcgi_temp_file_write_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
694 " syn keyword ngxDirectiveThirdParty fastcgi_temp_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
695 syn keyword ngxDirectiveDeprecated fastcgi_upstream_fail_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
696 syn keyword ngxDirectiveDeprecated fastcgi_upstream_max_fails
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
697
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
698 " Akamai G2O Module <https://github.com/kaltura/nginx_mod_akamai_g2o>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
699 " Nginx Module for Authenticating Akamai G2O requests
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
700 syn keyword ngxDirectiveThirdParty g2o
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
701 syn keyword ngxDirectiveThirdParty g2o_nonce
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
702 syn keyword ngxDirectiveThirdParty g2o_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
703
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
704 " Lua Module <https://github.com/alacner/nginx_lua_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
705 " You can be very simple to execute lua code for nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
706 syn keyword ngxDirectiveThirdParty lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
707
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
708 " Array Variable Module <https://github.com/openresty/array-var-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
709 " Add support for array-typed variables to nginx config files
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
710 syn keyword ngxDirectiveThirdParty array_split
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
711 syn keyword ngxDirectiveThirdParty array_join
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
712 syn keyword ngxDirectiveThirdParty array_map
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
713 syn keyword ngxDirectiveThirdParty array_map_op
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
714
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
715 " Nginx Audio Track for HTTP Live Streaming <https://github.com/flavioribeiro/nginx-audio-track-for-hls-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
716 " This nginx module generates audio track for hls streams on the fly.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
717 syn keyword ngxDirectiveThirdParty ngx_hls_audio_track
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
718 syn keyword ngxDirectiveThirdParty ngx_hls_audio_track_rootpath
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
719 syn keyword ngxDirectiveThirdParty ngx_hls_audio_track_output_format
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
720 syn keyword ngxDirectiveThirdParty ngx_hls_audio_track_output_header
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
721
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
722 " AWS Proxy Module <https://github.com/anomalizer/ngx_aws_auth>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
723 " Nginx module to proxy to authenticated AWS services
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
724 syn keyword ngxDirectiveThirdParty aws_access_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
725 syn keyword ngxDirectiveThirdParty aws_key_scope
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
726 syn keyword ngxDirectiveThirdParty aws_signing_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
727 syn keyword ngxDirectiveThirdParty aws_endpoint
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
728 syn keyword ngxDirectiveThirdParty aws_s3_bucket
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
729 syn keyword ngxDirectiveThirdParty aws_sign
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
730
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
731 " Backtrace module <https://github.com/alibaba/nginx-backtrace>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
732 " A Nginx module to dump backtrace when a worker process exits abnormally
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
733 syn keyword ngxDirectiveThirdParty backtrace_log
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
734 syn keyword ngxDirectiveThirdParty backtrace_max_stack_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
735
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
736 " Brotli Module <https://github.com/google/ngx_brotli>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
737 " Nginx module for Brotli compression
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
738 syn keyword ngxDirectiveThirdParty brotli_static
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
739 syn keyword ngxDirectiveThirdParty brotli
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
740 syn keyword ngxDirectiveThirdParty brotli_types
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
741 syn keyword ngxDirectiveThirdParty brotli_buffers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
742 syn keyword ngxDirectiveThirdParty brotli_comp_level
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
743 syn keyword ngxDirectiveThirdParty brotli_window
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
744 syn keyword ngxDirectiveThirdParty brotli_min_length
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
745
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
746 " Cache Purge Module <https://github.com/FRiCKLE/ngx_cache_purge>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
747 " Adds ability to purge content from FastCGI, proxy, SCGI and uWSGI caches.
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
748 syn keyword ngxDirectiveThirdParty fastcgi_cache_purge
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
749 syn keyword ngxDirectiveThirdParty proxy_cache_purge
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
750 " syn keyword ngxDirectiveThirdParty scgi_cache_purge
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
751 " syn keyword ngxDirectiveThirdParty uwsgi_cache_purge
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
752
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
753 " Chunkin Module (DEPRECATED) <http://wiki.nginx.org/NginxHttpChunkinModule>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
754 " HTTP 1.1 chunked-encoding request body support for Nginx.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
755 syn keyword ngxDirectiveDeprecated chunkin
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
756 syn keyword ngxDirectiveDeprecated chunkin_keepalive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
757 syn keyword ngxDirectiveDeprecated chunkin_max_chunks_per_buf
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
758 syn keyword ngxDirectiveDeprecated chunkin_resume
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
759
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
760 " Circle GIF Module <https://github.com/evanmiller/nginx_circle_gif>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
761 " Generates simple circle images with the colors and size specified in the URL.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
762 syn keyword ngxDirectiveThirdParty circle_gif
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
763 syn keyword ngxDirectiveThirdParty circle_gif_max_radius
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
764 syn keyword ngxDirectiveThirdParty circle_gif_min_radius
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
765 syn keyword ngxDirectiveThirdParty circle_gif_step_radius
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
766
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
767 " Nginx-Clojure Module <http://nginx-clojure.github.io/index.html>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
768 " Parses the Accept-Language header and gives the most suitable locale from a list of supported locales.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
769 syn keyword ngxDirectiveThirdParty jvm_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
770 syn keyword ngxDirectiveThirdParty jvm_var
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
771 syn keyword ngxDirectiveThirdParty jvm_classpath
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
772 syn keyword ngxDirectiveThirdParty jvm_classpath_check
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
773 syn keyword ngxDirectiveThirdParty jvm_workers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
774 syn keyword ngxDirectiveThirdParty jvm_options
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
775 syn keyword ngxDirectiveThirdParty jvm_handler_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
776 syn keyword ngxDirectiveThirdParty jvm_init_handler_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
777 syn keyword ngxDirectiveThirdParty jvm_init_handler_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
778 syn keyword ngxDirectiveThirdParty jvm_exit_handler_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
779 syn keyword ngxDirectiveThirdParty jvm_exit_handler_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
780 syn keyword ngxDirectiveThirdParty handlers_lazy_init
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
781 syn keyword ngxDirectiveThirdParty auto_upgrade_ws
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
782 syn keyword ngxDirectiveThirdParty content_handler_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
783 syn keyword ngxDirectiveThirdParty content_handler_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
784 syn keyword ngxDirectiveThirdParty content_handler_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
785 syn keyword ngxDirectiveThirdParty rewrite_handler_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
786 syn keyword ngxDirectiveThirdParty rewrite_handler_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
787 syn keyword ngxDirectiveThirdParty rewrite_handler_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
788 syn keyword ngxDirectiveThirdParty access_handler_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
789 syn keyword ngxDirectiveThirdParty access_handler_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
790 syn keyword ngxDirectiveThirdParty access_handler_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
791 syn keyword ngxDirectiveThirdParty header_filter_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
792 syn keyword ngxDirectiveThirdParty header_filter_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
793 syn keyword ngxDirectiveThirdParty header_filter_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
794 syn keyword ngxDirectiveThirdParty content_handler_property
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
795 syn keyword ngxDirectiveThirdParty rewrite_handler_property
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
796 syn keyword ngxDirectiveThirdParty access_handler_property
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
797 syn keyword ngxDirectiveThirdParty header_filter_property
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
798 syn keyword ngxDirectiveThirdParty always_read_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
799 syn keyword ngxDirectiveThirdParty shared_map
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
800 syn keyword ngxDirectiveThirdParty write_page_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
801
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
802 " Upstream Consistent Hash <https://www.nginx.com/resources/wiki/modules/consistent_hash/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
803 " A load balancer that uses an internal consistent hash ring to select the right backend node.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
804 syn keyword ngxDirectiveThirdParty consistent_hash
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
805
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
806 " Nginx Development Kit <https://github.com/simpl/ngx_devel_kit>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
807 " The NDK is an Nginx module that is designed to extend the core functionality of the excellent Nginx webserver in a way that can be used as a basis of other Nginx modules.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
808 " NDK_UPSTREAM_LIST
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
809 " This submodule provides a directive that creates a list of upstreams, with optional weighting. This list can then be used by other modules to hash over the upstreams however they choose.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
810 syn keyword ngxDirectiveThirdParty upstream_list
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
811
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
812 " Drizzle Module <https://www.nginx.com/resources/wiki/modules/drizzle/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
813 " Upstream module for talking to MySQL and Drizzle directly
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
814 syn keyword ngxDirectiveThirdParty drizzle_server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
815 syn keyword ngxDirectiveThirdParty drizzle_keepalive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
816 syn keyword ngxDirectiveThirdParty drizzle_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
817 syn keyword ngxDirectiveThirdParty drizzle_pass
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
818 syn keyword ngxDirectiveThirdParty drizzle_connect_timeout
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
819 syn keyword ngxDirectiveThirdParty drizzle_send_query_timeout
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
820 syn keyword ngxDirectiveThirdParty drizzle_recv_cols_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
821 syn keyword ngxDirectiveThirdParty drizzle_recv_rows_timeout
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
822 syn keyword ngxDirectiveThirdParty drizzle_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
823 syn keyword ngxDirectiveThirdParty drizzle_module_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
824 syn keyword ngxDirectiveThirdParty drizzle_status
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
825
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
826 " Dynamic ETags Module <https://github.com/kali/nginx-dynamic-etags>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
827 " Attempt at handling ETag / If-None-Match on proxied content.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
828 syn keyword ngxDirectiveThirdParty dynamic_etags
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
829
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
830 " Echo Module <https://www.nginx.com/resources/wiki/modules/echo/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
831 " Bringing the power of "echo", "sleep", "time" and more to Nginx's config file
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
832 syn keyword ngxDirectiveThirdParty echo
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
833 syn keyword ngxDirectiveThirdParty echo_duplicate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
834 syn keyword ngxDirectiveThirdParty echo_flush
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
835 syn keyword ngxDirectiveThirdParty echo_sleep
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
836 syn keyword ngxDirectiveThirdParty echo_blocking_sleep
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
837 syn keyword ngxDirectiveThirdParty echo_reset_timer
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
838 syn keyword ngxDirectiveThirdParty echo_read_request_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
839 syn keyword ngxDirectiveThirdParty echo_location_async
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
840 syn keyword ngxDirectiveThirdParty echo_location
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
841 syn keyword ngxDirectiveThirdParty echo_subrequest_async
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
842 syn keyword ngxDirectiveThirdParty echo_subrequest
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
843 syn keyword ngxDirectiveThirdParty echo_foreach_split
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
844 syn keyword ngxDirectiveThirdParty echo_end
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
845 syn keyword ngxDirectiveThirdParty echo_request_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
846 syn keyword ngxDirectiveThirdParty echo_exec
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
847 syn keyword ngxDirectiveThirdParty echo_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
848 syn keyword ngxDirectiveThirdParty echo_before_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
849 syn keyword ngxDirectiveThirdParty echo_after_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
850
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
851 " Encrypted Session Module <https://github.com/openresty/encrypted-session-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
852 " Encrypt and decrypt nginx variable values
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
853 syn keyword ngxDirectiveThirdParty encrypted_session_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
854 syn keyword ngxDirectiveThirdParty encrypted_session_iv
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
855 syn keyword ngxDirectiveThirdParty encrypted_session_expires
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
856 syn keyword ngxDirectiveThirdParty set_encrypt_session
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
857 syn keyword ngxDirectiveThirdParty set_decrypt_session
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
858
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
859 " Enhanced Memcached Module <https://github.com/bpaquet/ngx_http_enhanced_memcached_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
860 " This module is based on the standard Nginx Memcached module, with some additonal features
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
861 syn keyword ngxDirectiveThirdParty enhanced_memcached_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
862 syn keyword ngxDirectiveThirdParty enhanced_memcached_hash_keys_with_md5
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
863 syn keyword ngxDirectiveThirdParty enhanced_memcached_allow_put
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
864 syn keyword ngxDirectiveThirdParty enhanced_memcached_allow_delete
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
865 syn keyword ngxDirectiveThirdParty enhanced_memcached_stats
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
866 syn keyword ngxDirectiveThirdParty enhanced_memcached_flush
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
867 syn keyword ngxDirectiveThirdParty enhanced_memcached_flush_namespace
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
868 syn keyword ngxDirectiveThirdParty enhanced_memcached_bind
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
869 syn keyword ngxDirectiveThirdParty enhanced_memcached_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
870 syn keyword ngxDirectiveThirdParty enhanced_memcached_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
871 syn keyword ngxDirectiveThirdParty enhanced_memcached_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
872 syn keyword ngxDirectiveThirdParty enhanced_memcached_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
873
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
874 " Events Module (DEPRECATED) <http://docs.dutov.org/nginx_modules_events_en.html>
6504
293413010217 Fixed spelling.
Josh Soref <timeless@gmail.com>
parents: 6484
diff changeset
875 " Provides options for start/stop events.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
876 syn keyword ngxDirectiveDeprecated on_start
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
877 syn keyword ngxDirectiveDeprecated on_stop
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
878
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
879 " EY Balancer Module <https://github.com/ezmobius/nginx-ey-balancer>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
880 " Adds a request queue to Nginx that allows the limiting of concurrent requests passed to the upstream.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
881 syn keyword ngxDirectiveThirdParty max_connections
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
882 syn keyword ngxDirectiveThirdParty max_connections_max_queue_length
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
883 syn keyword ngxDirectiveThirdParty max_connections_queue_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
884
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
885 " Upstream Fair Balancer <https://www.nginx.com/resources/wiki/modules/fair_balancer/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
886 " Sends an incoming request to the least-busy backend server, rather than distributing requests round-robin.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
887 syn keyword ngxDirectiveThirdParty fair
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
888 syn keyword ngxDirectiveThirdParty upstream_fair_shm_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
889
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
890 " Fancy Indexes Module <https://github.com/aperezdc/ngx-fancyindex>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
891 " Like the built-in autoindex module, but fancier.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
892 syn keyword ngxDirectiveThirdParty fancyindex
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
893 syn keyword ngxDirectiveThirdParty fancyindex_default_sort
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
894 syn keyword ngxDirectiveThirdParty fancyindex_directories_first
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
895 syn keyword ngxDirectiveThirdParty fancyindex_css_href
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
896 syn keyword ngxDirectiveThirdParty fancyindex_exact_size
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
897 syn keyword ngxDirectiveThirdParty fancyindex_name_length
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
898 syn keyword ngxDirectiveThirdParty fancyindex_footer
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
899 syn keyword ngxDirectiveThirdParty fancyindex_header
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
900 syn keyword ngxDirectiveThirdParty fancyindex_show_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
901 syn keyword ngxDirectiveThirdParty fancyindex_ignore
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
902 syn keyword ngxDirectiveThirdParty fancyindex_hide_symlinks
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
903 syn keyword ngxDirectiveThirdParty fancyindex_localtime
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
904 syn keyword ngxDirectiveThirdParty fancyindex_time_format
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
905
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
906 " Form Auth Module <https://github.com/veruu/ngx_form_auth>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
907 " Provides authentication and authorization with credentials submitted via POST request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
908 syn keyword ngxDirectiveThirdParty form_auth
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
909 syn keyword ngxDirectiveThirdParty form_auth_pam_service
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
910 syn keyword ngxDirectiveThirdParty form_auth_login
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
911 syn keyword ngxDirectiveThirdParty form_auth_password
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
912 syn keyword ngxDirectiveThirdParty form_auth_remote_user
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
913
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
914 " Form Input Module <https://github.com/calio/form-input-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
915 " Reads HTTP POST and PUT request body encoded in "application/x-www-form-urlencoded" and parses the arguments into nginx variables.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
916 syn keyword ngxDirectiveThirdParty set_form_input
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
917 syn keyword ngxDirectiveThirdParty set_form_input_multi
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
918
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
919 " GeoIP Module (DEPRECATED) <http://wiki.nginx.org/NginxHttp3rdPartyGeoIPModule>
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
920 " Country code lookups via the MaxMind GeoIP API.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
921 syn keyword ngxDirectiveDeprecated geoip_country_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
922
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
923 " GeoIP 2 Module <https://github.com/leev/ngx_http_geoip2_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
924 " Creates variables with values from the maxmind geoip2 databases based on the client IP
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
925 syn keyword ngxDirectiveThirdParty geoip2
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
926
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
927 " GridFS Module <https://github.com/mdirolf/nginx-gridfs>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
928 " Nginx module for serving files from MongoDB's GridFS
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
929 syn keyword ngxDirectiveThirdParty gridfs
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
930
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
931 " Headers More Module <https://github.com/openresty/headers-more-nginx-module>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
932 " Set and clear input and output headers...more than "add"!
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
933 syn keyword ngxDirectiveThirdParty more_clear_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
934 syn keyword ngxDirectiveThirdParty more_clear_input_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
935 syn keyword ngxDirectiveThirdParty more_set_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
936 syn keyword ngxDirectiveThirdParty more_set_input_headers
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
937
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
938 " Health Checks Upstreams Module <https://www.nginx.com/resources/wiki/modules/healthcheck/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
939 " Polls backends and if they respond with HTTP 200 + an optional request body, they are marked good. Otherwise, they are marked bad.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
940 syn keyword ngxDirectiveThirdParty healthcheck_enabled
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
941 syn keyword ngxDirectiveThirdParty healthcheck_delay
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
942 syn keyword ngxDirectiveThirdParty healthcheck_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
943 syn keyword ngxDirectiveThirdParty healthcheck_failcount
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
944 syn keyword ngxDirectiveThirdParty healthcheck_send
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
945 syn keyword ngxDirectiveThirdParty healthcheck_expected
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
946 syn keyword ngxDirectiveThirdParty healthcheck_buffer
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
947 syn keyword ngxDirectiveThirdParty healthcheck_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
948
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
949 " HTTP Accounting Module <https://github.com/Lax/ngx_http_accounting_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
950 " Add traffic stat function to nginx. Useful for http accounting based on nginx configuration logic
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
951 syn keyword ngxDirectiveThirdParty http_accounting
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
952 syn keyword ngxDirectiveThirdParty http_accounting_log
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
953 syn keyword ngxDirectiveThirdParty http_accounting_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
954 syn keyword ngxDirectiveThirdParty http_accounting_interval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
955 syn keyword ngxDirectiveThirdParty http_accounting_perturb
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
956
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
957 " Nginx Digest Authentication module <https://github.com/atomx/nginx-http-auth-digest>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
958 " Digest Authentication for Nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
959 syn keyword ngxDirectiveThirdParty auth_digest
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
960 syn keyword ngxDirectiveThirdParty auth_digest_user_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
961 syn keyword ngxDirectiveThirdParty auth_digest_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
962 syn keyword ngxDirectiveThirdParty auth_digest_expires
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
963 syn keyword ngxDirectiveThirdParty auth_digest_replays
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
964 syn keyword ngxDirectiveThirdParty auth_digest_shm_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
965
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
966 " Auth PAM Module <https://github.com/sto/ngx_http_auth_pam_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
967 " HTTP Basic Authentication using PAM.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
968 syn keyword ngxDirectiveThirdParty auth_pam
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
969 syn keyword ngxDirectiveThirdParty auth_pam_service_name
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
970
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
971 " HTTP Auth Request Module <http://nginx.org/en/docs/http/ngx_http_auth_request_module.html>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
972 " Implements client authorization based on the result of a subrequest
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
973 " syn keyword ngxDirectiveThirdParty auth_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
974 " syn keyword ngxDirectiveThirdParty auth_request_set
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
975
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
976 " HTTP Concatenation module for Nginx <https://github.com/alibaba/nginx-http-concat>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
977 " A Nginx module for concatenating files in a given context: CSS and JS files usually
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
978 syn keyword ngxDirectiveThirdParty concat
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
979 syn keyword ngxDirectiveThirdParty concat_types
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
980 syn keyword ngxDirectiveThirdParty concat_unique
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
981 syn keyword ngxDirectiveThirdParty concat_max_files
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
982 syn keyword ngxDirectiveThirdParty concat_delimiter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
983 syn keyword ngxDirectiveThirdParty concat_ignore_file_error
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
984
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
985 " HTTP Dynamic Upstream Module <https://github.com/yzprofile/ngx_http_dyups_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
986 " Update upstreams' config by restful interface
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
987 syn keyword ngxDirectiveThirdParty dyups_interface
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
988 syn keyword ngxDirectiveThirdParty dyups_read_msg_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
989 syn keyword ngxDirectiveThirdParty dyups_shm_zone_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
990 syn keyword ngxDirectiveThirdParty dyups_upstream_conf
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
991 syn keyword ngxDirectiveThirdParty dyups_trylock
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
992
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
993 " HTTP Footer If Filter Module <https://github.com/flygoast/ngx_http_footer_if_filter>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
994 " The ngx_http_footer_if_filter_module is used to add given content to the end of the response according to the condition specified.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
995 syn keyword ngxDirectiveThirdParty footer_if
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
996
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
997 " HTTP Footer Filter Module <https://github.com/alibaba/nginx-http-footer-filter>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
998 " This module implements a body filter that adds a given string to the page footer.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
999 syn keyword ngxDirectiveThirdParty footer
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1000 syn keyword ngxDirectiveThirdParty footer_types
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1001
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1002 " HTTP Internal Redirect Module <https://github.com/flygoast/ngx_http_internal_redirect>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1003 " Make an internal redirect to the uri specified according to the condition specified.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1004 syn keyword ngxDirectiveThirdParty internal_redirect_if
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1005 syn keyword ngxDirectiveThirdParty internal_redirect_if_no_postponed
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1006
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1007 " HTTP JavaScript Module <https://github.com/peter-leonov/ngx_http_js_module>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1008 " Embedding SpiderMonkey. Nearly full port on Perl module.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1009 syn keyword ngxDirectiveThirdParty js
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1010 syn keyword ngxDirectiveThirdParty js_filter
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1011 syn keyword ngxDirectiveThirdParty js_filter_types
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1012 syn keyword ngxDirectiveThirdParty js_load
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1013 syn keyword ngxDirectiveThirdParty js_maxmem
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1014 syn keyword ngxDirectiveThirdParty js_require
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1015 syn keyword ngxDirectiveThirdParty js_set
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1016 syn keyword ngxDirectiveThirdParty js_utf8
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1017
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1018 " HTTP Push Module (DEPRECATED) <http://pushmodule.slact.net/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1019 " Turn Nginx into an adept long-polling HTTP Push (Comet) server.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1020 syn keyword ngxDirectiveDeprecated push_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1021 syn keyword ngxDirectiveDeprecated push_listener
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1022 syn keyword ngxDirectiveDeprecated push_message_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1023 syn keyword ngxDirectiveDeprecated push_queue_messages
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1024 syn keyword ngxDirectiveDeprecated push_sender
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1025
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1026 " HTTP Redis Module <https://www.nginx.com/resources/wiki/modules/redis/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1027 " Redis <http://code.google.com/p/redis/> support.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1028 syn keyword ngxDirectiveThirdParty redis_bind
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1029 syn keyword ngxDirectiveThirdParty redis_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1030 syn keyword ngxDirectiveThirdParty redis_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1031 syn keyword ngxDirectiveThirdParty redis_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1032 syn keyword ngxDirectiveThirdParty redis_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1033 syn keyword ngxDirectiveThirdParty redis_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1034 syn keyword ngxDirectiveThirdParty redis_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1035
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1036 " Iconv Module <https://github.com/calio/iconv-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1037 " A character conversion nginx module using libiconv
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1038 syn keyword ngxDirectiveThirdParty set_iconv
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1039 syn keyword ngxDirectiveThirdParty iconv_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1040 syn keyword ngxDirectiveThirdParty iconv_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1041
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1042 " IP Blocker Module <https://github.com/tmthrgd/nginx-ip-blocker>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1043 " An efficient shared memory IP blocking system for nginx.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1044 syn keyword ngxDirectiveThirdParty ip_blocker
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1045
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1046 " IP2Location Module <https://github.com/chrislim2888/ip2location-nginx>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1047 " Allows user to lookup for geolocation information using IP2Location database
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1048 syn keyword ngxDirectiveThirdParty ip2location_database
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1049
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1050 " JS Module <https://github.com/peter-leonov/ngx_http_js_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1051 " Reflect the nginx functionality in JS
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1052 syn keyword ngxDirectiveThirdParty js
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1053 syn keyword ngxDirectiveThirdParty js_access
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1054 syn keyword ngxDirectiveThirdParty js_load
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1055 syn keyword ngxDirectiveThirdParty js_set
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1056
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1057 " Limit Upload Rate Module <https://github.com/cfsego/limit_upload_rate>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1058 " Limit client-upload rate when they are sending request bodies to you
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1059 syn keyword ngxDirectiveThirdParty limit_upload_rate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1060 syn keyword ngxDirectiveThirdParty limit_upload_rate_after
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1061
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1062 " Limit Upstream Module <https://github.com/cfsego/nginx-limit-upstream>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1063 " Limit the number of connections to upstream for NGINX
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1064 syn keyword ngxDirectiveThirdParty limit_upstream_zone
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1065 syn keyword ngxDirectiveThirdParty limit_upstream_conn
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1066 syn keyword ngxDirectiveThirdParty limit_upstream_log_level
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1067
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1068 " Log If Module <https://github.com/cfsego/ngx_log_if>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1069 " Conditional accesslog for nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1070 syn keyword ngxDirectiveThirdParty access_log_bypass_if
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1071
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1072 " Log Request Speed (DEPRECATED) <http://wiki.nginx.org/NginxHttpLogRequestSpeed>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1073 " Log the time it took to process each request.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1074 syn keyword ngxDirectiveDeprecated log_request_speed_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1075 syn keyword ngxDirectiveDeprecated log_request_speed_filter_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1076
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1077 " Log ZeroMQ Module <https://github.com/alticelabs/nginx-log-zmq>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1078 " ZeroMQ logger module for nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1079 syn keyword ngxDirectiveThirdParty log_zmq_server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1080 syn keyword ngxDirectiveThirdParty log_zmq_endpoint
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1081 syn keyword ngxDirectiveThirdParty log_zmq_format
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1082 syn keyword ngxDirectiveThirdParty log_zmq_off
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1083
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1084 " Lower/UpperCase Module <https://github.com/replay/ngx_http_lower_upper_case>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1085 " This module simply uppercases or lowercases a string and saves it into a new variable.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1086 syn keyword ngxDirectiveThirdParty lower
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1087 syn keyword ngxDirectiveThirdParty upper
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1088
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1089 " Lua Upstream Module <https://github.com/openresty/lua-upstream-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1090 " Nginx C module to expose Lua API to ngx_lua for Nginx upstreams
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1091
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1092 " Lua Module <https://github.com/openresty/lua-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1093 " Embed the Power of Lua into NGINX HTTP servers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1094 syn keyword ngxDirectiveThirdParty lua_use_default_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1095 syn keyword ngxDirectiveThirdParty lua_malloc_trim
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1096 syn keyword ngxDirectiveThirdParty lua_code_cache
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1097 syn keyword ngxDirectiveThirdParty lua_regex_cache_max_entries
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1098 syn keyword ngxDirectiveThirdParty lua_regex_match_limit
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1099 syn keyword ngxDirectiveThirdParty lua_package_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1100 syn keyword ngxDirectiveThirdParty lua_package_cpath
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1101 syn keyword ngxDirectiveThirdParty init_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1102 syn keyword ngxDirectiveThirdParty init_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1103 syn keyword ngxDirectiveThirdParty init_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1104 syn keyword ngxDirectiveThirdParty init_worker_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1105 syn keyword ngxDirectiveThirdParty init_worker_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1106 syn keyword ngxDirectiveThirdParty init_worker_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1107 syn keyword ngxDirectiveThirdParty set_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1108 syn keyword ngxDirectiveThirdParty set_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1109 syn keyword ngxDirectiveThirdParty set_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1110 syn keyword ngxDirectiveThirdParty content_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1111 syn keyword ngxDirectiveThirdParty content_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1112 syn keyword ngxDirectiveThirdParty content_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1113 syn keyword ngxDirectiveThirdParty rewrite_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1114 syn keyword ngxDirectiveThirdParty rewrite_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1115 syn keyword ngxDirectiveThirdParty rewrite_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1116 syn keyword ngxDirectiveThirdParty access_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1117 syn keyword ngxDirectiveThirdParty access_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1118 syn keyword ngxDirectiveThirdParty access_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1119 syn keyword ngxDirectiveThirdParty header_filter_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1120 syn keyword ngxDirectiveThirdParty header_filter_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1121 syn keyword ngxDirectiveThirdParty header_filter_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1122 syn keyword ngxDirectiveThirdParty body_filter_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1123 syn keyword ngxDirectiveThirdParty body_filter_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1124 syn keyword ngxDirectiveThirdParty body_filter_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1125 syn keyword ngxDirectiveThirdParty log_by_lua
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1126 syn keyword ngxDirectiveThirdParty log_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1127 syn keyword ngxDirectiveThirdParty log_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1128 syn keyword ngxDirectiveThirdParty balancer_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1129 syn keyword ngxDirectiveThirdParty balancer_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1130 syn keyword ngxDirectiveThirdParty lua_need_request_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1131 syn keyword ngxDirectiveThirdParty ssl_certificate_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1132 syn keyword ngxDirectiveThirdParty ssl_certificate_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1133 syn keyword ngxDirectiveThirdParty ssl_session_fetch_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1134 syn keyword ngxDirectiveThirdParty ssl_session_fetch_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1135 syn keyword ngxDirectiveThirdParty ssl_session_store_by_lua_block
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1136 syn keyword ngxDirectiveThirdParty ssl_session_store_by_lua_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1137 syn keyword ngxDirectiveThirdParty lua_shared_dict
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1138 syn keyword ngxDirectiveThirdParty lua_socket_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1139 syn keyword ngxDirectiveThirdParty lua_socket_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1140 syn keyword ngxDirectiveThirdParty lua_socket_send_lowat
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1141 syn keyword ngxDirectiveThirdParty lua_socket_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1142 syn keyword ngxDirectiveThirdParty lua_socket_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1143 syn keyword ngxDirectiveThirdParty lua_socket_pool_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1144 syn keyword ngxDirectiveThirdParty lua_socket_keepalive_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1145 syn keyword ngxDirectiveThirdParty lua_socket_log_errors
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1146 syn keyword ngxDirectiveThirdParty lua_ssl_ciphers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1147 syn keyword ngxDirectiveThirdParty lua_ssl_crl
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1148 syn keyword ngxDirectiveThirdParty lua_ssl_protocols
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1149 syn keyword ngxDirectiveThirdParty lua_ssl_trusted_certificate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1150 syn keyword ngxDirectiveThirdParty lua_ssl_verify_depth
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1151 syn keyword ngxDirectiveThirdParty lua_http10_buffering
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1152 syn keyword ngxDirectiveThirdParty rewrite_by_lua_no_postpone
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1153 syn keyword ngxDirectiveThirdParty access_by_lua_no_postpone
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1154 syn keyword ngxDirectiveThirdParty lua_transform_underscores_in_response_headers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1155 syn keyword ngxDirectiveThirdParty lua_check_client_abort
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1156 syn keyword ngxDirectiveThirdParty lua_max_pending_timers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1157 syn keyword ngxDirectiveThirdParty lua_max_running_timers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1158
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1159 " MD5 Filter Module <https://github.com/kainswor/nginx_md5_filter>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1160 " A content filter for nginx, which returns the md5 hash of the content otherwise returned.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1161 syn keyword ngxDirectiveThirdParty md5_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1162
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1163 " Memc Module <https://github.com/openresty/memc-nginx-module>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1164 " An extended version of the standard memcached module that supports set, add, delete, and many more memcached commands.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1165 syn keyword ngxDirectiveThirdParty memc_buffer_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1166 syn keyword ngxDirectiveThirdParty memc_cmds_allowed
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1167 syn keyword ngxDirectiveThirdParty memc_connect_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1168 syn keyword ngxDirectiveThirdParty memc_flags_to_last_modified
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1169 syn keyword ngxDirectiveThirdParty memc_next_upstream
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1170 syn keyword ngxDirectiveThirdParty memc_pass
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1171 syn keyword ngxDirectiveThirdParty memc_read_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1172 syn keyword ngxDirectiveThirdParty memc_send_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1173 syn keyword ngxDirectiveThirdParty memc_upstream_fail_timeout
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1174 syn keyword ngxDirectiveThirdParty memc_upstream_max_fails
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1175
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1176 " Mod Security Module <https://github.com/SpiderLabs/ModSecurity>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1177 " ModSecurity is an open source, cross platform web application firewall (WAF) engine
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1178 syn keyword ngxDirectiveThirdParty ModSecurityConfig
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1179 syn keyword ngxDirectiveThirdParty ModSecurityEnabled
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1180 syn keyword ngxDirectiveThirdParty pool_context
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1181 syn keyword ngxDirectiveThirdParty pool_context_hash_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1182
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1183 " Mogilefs Module <http://www.grid.net.ru/nginx/mogilefs.en.html>
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1184 " MogileFS client for nginx web server.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1185 syn keyword ngxDirectiveThirdParty mogilefs_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1186 syn keyword ngxDirectiveThirdParty mogilefs_methods
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1187 syn keyword ngxDirectiveThirdParty mogilefs_domain
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1188 syn keyword ngxDirectiveThirdParty mogilefs_class
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1189 syn keyword ngxDirectiveThirdParty mogilefs_tracker
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1190 syn keyword ngxDirectiveThirdParty mogilefs_noverify
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1191 syn keyword ngxDirectiveThirdParty mogilefs_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1192 syn keyword ngxDirectiveThirdParty mogilefs_send_timeout
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1193 syn keyword ngxDirectiveThirdParty mogilefs_read_timeout
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1194
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1195 " Mongo Module <https://github.com/simpl/ngx_mongo>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1196 " Upstream module that allows nginx to communicate directly with MongoDB database.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1197 syn keyword ngxDirectiveThirdParty mongo_auth
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1198 syn keyword ngxDirectiveThirdParty mongo_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1199 syn keyword ngxDirectiveThirdParty mongo_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1200 syn keyword ngxDirectiveThirdParty mongo_json
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1201 syn keyword ngxDirectiveThirdParty mongo_bind
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1202 syn keyword ngxDirectiveThirdParty mongo_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1203 syn keyword ngxDirectiveThirdParty mongo_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1204 syn keyword ngxDirectiveThirdParty mongo_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1205 syn keyword ngxDirectiveThirdParty mongo_buffering
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1206 syn keyword ngxDirectiveThirdParty mongo_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1207 syn keyword ngxDirectiveThirdParty mongo_buffers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1208 syn keyword ngxDirectiveThirdParty mongo_busy_buffers_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1209 syn keyword ngxDirectiveThirdParty mongo_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1210
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1211 " MP4 Streaming Lite Module <https://www.nginx.com/resources/wiki/modules/mp4_streaming/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1212 " Will seek to a certain time within H.264/MP4 files when provided with a 'start' parameter in the URL.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1213 " syn keyword ngxDirectiveThirdParty mp4
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1214
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1215 " NAXSI Module <https://github.com/nbs-system/naxsi>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1216 " NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1217 syn keyword ngxDirectiveThirdParty DeniedUrl denied_url
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1218 syn keyword ngxDirectiveThirdParty LearningMode learning_mode
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1219 syn keyword ngxDirectiveThirdParty SecRulesEnabled rules_enabled
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1220 syn keyword ngxDirectiveThirdParty SecRulesDisabled rules_disabled
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1221 syn keyword ngxDirectiveThirdParty CheckRule check_rule
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1222 syn keyword ngxDirectiveThirdParty BasicRule basic_rule
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1223 syn keyword ngxDirectiveThirdParty MainRule main_rule
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1224 syn keyword ngxDirectiveThirdParty LibInjectionSql libinjection_sql
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1225 syn keyword ngxDirectiveThirdParty LibInjectionXss libinjection_xss
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1226
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1227 " Nchan Module <https://nchan.slact.net/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1228 " Fast, horizontally scalable, multiprocess pub/sub queuing server and proxy for HTTP, long-polling, Websockets and EventSource (SSE)
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1229 syn keyword ngxDirectiveThirdParty nchan_channel_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1230 syn keyword ngxDirectiveThirdParty nchan_channel_id_split_delimiter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1231 syn keyword ngxDirectiveThirdParty nchan_eventsource_event
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1232 syn keyword ngxDirectiveThirdParty nchan_longpoll_multipart_response
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1233 syn keyword ngxDirectiveThirdParty nchan_publisher
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1234 syn keyword ngxDirectiveThirdParty nchan_publisher_channel_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1235 syn keyword ngxDirectiveThirdParty nchan_publisher_upstream_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1236 syn keyword ngxDirectiveThirdParty nchan_pubsub
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1237 syn keyword ngxDirectiveThirdParty nchan_subscribe_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1238 syn keyword ngxDirectiveThirdParty nchan_subscriber
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1239 syn keyword ngxDirectiveThirdParty nchan_subscriber_channel_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1240 syn keyword ngxDirectiveThirdParty nchan_subscriber_compound_etag_message_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1241 syn keyword ngxDirectiveThirdParty nchan_subscriber_first_message
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1242 syn keyword ngxDirectiveThirdParty nchan_subscriber_http_raw_stream_separator
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1243 syn keyword ngxDirectiveThirdParty nchan_subscriber_last_message_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1244 syn keyword ngxDirectiveThirdParty nchan_subscriber_message_id_custom_etag_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1245 syn keyword ngxDirectiveThirdParty nchan_subscriber_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1246 syn keyword ngxDirectiveThirdParty nchan_unsubscribe_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1247 syn keyword ngxDirectiveThirdParty nchan_websocket_ping_interval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1248 syn keyword ngxDirectiveThirdParty nchan_authorize_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1249 syn keyword ngxDirectiveThirdParty nchan_max_reserved_memory
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1250 syn keyword ngxDirectiveThirdParty nchan_message_buffer_length
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1251 syn keyword ngxDirectiveThirdParty nchan_message_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1252 syn keyword ngxDirectiveThirdParty nchan_redis_idle_channel_cache_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1253 syn keyword ngxDirectiveThirdParty nchan_redis_namespace
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1254 syn keyword ngxDirectiveThirdParty nchan_redis_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1255 syn keyword ngxDirectiveThirdParty nchan_redis_ping_interval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1256 syn keyword ngxDirectiveThirdParty nchan_redis_server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1257 syn keyword ngxDirectiveThirdParty nchan_redis_storage_mode
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1258 syn keyword ngxDirectiveThirdParty nchan_redis_url
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1259 syn keyword ngxDirectiveThirdParty nchan_store_messages
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1260 syn keyword ngxDirectiveThirdParty nchan_use_redis
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1261 syn keyword ngxDirectiveThirdParty nchan_access_control_allow_origin
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1262 syn keyword ngxDirectiveThirdParty nchan_channel_group
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1263 syn keyword ngxDirectiveThirdParty nchan_channel_group_accounting
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1264 syn keyword ngxDirectiveThirdParty nchan_group_location
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1265 syn keyword ngxDirectiveThirdParty nchan_group_max_channels
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1266 syn keyword ngxDirectiveThirdParty nchan_group_max_messages
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1267 syn keyword ngxDirectiveThirdParty nchan_group_max_messages_disk
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1268 syn keyword ngxDirectiveThirdParty nchan_group_max_messages_memory
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1269 syn keyword ngxDirectiveThirdParty nchan_group_max_subscribers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1270 syn keyword ngxDirectiveThirdParty nchan_subscribe_existing_channels_only
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1271 syn keyword ngxDirectiveThirdParty nchan_channel_event_string
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1272 syn keyword ngxDirectiveThirdParty nchan_channel_events_channel_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1273 syn keyword ngxDirectiveThirdParty nchan_stub_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1274 syn keyword ngxDirectiveThirdParty nchan_max_channel_id_length
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1275 syn keyword ngxDirectiveThirdParty nchan_max_channel_subscribers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1276 syn keyword ngxDirectiveThirdParty nchan_channel_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1277 syn keyword ngxDirectiveThirdParty nchan_storage_engine
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1278
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1279 " Nginx Notice Module <https://github.com/kr/nginx-notice>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1280 " Serve static file to POST requests.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1281 syn keyword ngxDirectiveThirdParty notice
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1282 syn keyword ngxDirectiveThirdParty notice_type
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1283
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1284 " OCSP Proxy Module <https://github.com/kyprizel/nginx_ocsp_proxy-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1285 " Nginx OCSP processing module designed for response caching
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1286 syn keyword ngxDirectiveThirdParty ocsp_proxy
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1287 syn keyword ngxDirectiveThirdParty ocsp_cache_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1288
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1289 " Eval Module <https://github.com/openresty/nginx-eval-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1290 " Module for nginx web server evaluates response of proxy or memcached module into variables.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1291 syn keyword ngxDirectiveThirdParty eval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1292 syn keyword ngxDirectiveThirdParty eval_escalate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1293 syn keyword ngxDirectiveThirdParty eval_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1294 syn keyword ngxDirectiveThirdParty eval_override_content_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1295 syn keyword ngxDirectiveThirdParty eval_subrequest_in_memory
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1296
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1297 " OpenSSL Version Module <https://github.com/apcera/nginx-openssl-version>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1298 " Nginx OpenSSL version check at startup
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1299 syn keyword ngxDirectiveThirdParty openssl_version_minimum
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1300 syn keyword ngxDirectiveThirdParty openssl_builddate_minimum
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1301
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1302 " Owner Match Module <https://www.nginx.com/resources/wiki/modules/owner_match/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1303 " Control access for specific owners and groups of files
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1304 syn keyword ngxDirectiveThirdParty omallow
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1305 syn keyword ngxDirectiveThirdParty omdeny
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1306
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1307 " Accept Language Module <https://www.nginx.com/resources/wiki/modules/accept_language/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1308 " Parses the Accept-Language header and gives the most suitable locale from a list of supported locales.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1309 syn keyword ngxDirectiveThirdParty pagespeed
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1310
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1311 " PHP Memcache Standard Balancer Module <https://github.com/replay/ngx_http_php_memcache_standard_balancer>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1312 " Loadbalancer that is compatible to the standard loadbalancer in the php-memcache module
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1313 syn keyword ngxDirectiveThirdParty hash_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1314
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1315 " PHP Session Module <https://github.com/replay/ngx_http_php_session>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1316 " Nginx module to parse php sessions
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1317 syn keyword ngxDirectiveThirdParty php_session_parse
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1318 syn keyword ngxDirectiveThirdParty php_session_strip_formatting
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1319
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1320 " Phusion Passenger Module <https://www.phusionpassenger.com/library/config/nginx/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1321 " Passenger is an open source web application server.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1322 syn keyword ngxDirectiveThirdParty passenger_root
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1323 syn keyword ngxDirectiveThirdParty passenger_enabled
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1324 syn keyword ngxDirectiveThirdParty passenger_base_uri
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1325 syn keyword ngxDirectiveThirdParty passenger_document_root
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1326 syn keyword ngxDirectiveThirdParty passenger_ruby
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1327 syn keyword ngxDirectiveThirdParty passenger_python
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1328 syn keyword ngxDirectiveThirdParty passenger_nodejs
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1329 syn keyword ngxDirectiveThirdParty passenger_meteor_app_settings
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1330 syn keyword ngxDirectiveThirdParty passenger_app_env
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1331 syn keyword ngxDirectiveThirdParty passenger_app_root
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1332 syn keyword ngxDirectiveThirdParty passenger_app_group_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1333 syn keyword ngxDirectiveThirdParty passenger_app_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1334 syn keyword ngxDirectiveThirdParty passenger_startup_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1335 syn keyword ngxDirectiveThirdParty passenger_restart_dir
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1336 syn keyword ngxDirectiveThirdParty passenger_spawn_method
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1337 syn keyword ngxDirectiveThirdParty passenger_env_var
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1338 syn keyword ngxDirectiveThirdParty passenger_load_shell_envvars
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1339 syn keyword ngxDirectiveThirdParty passenger_rolling_restarts
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1340 syn keyword ngxDirectiveThirdParty passenger_resist_deployment_errors
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1341 syn keyword ngxDirectiveThirdParty passenger_user_switching
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1342 syn keyword ngxDirectiveThirdParty passenger_user
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1343 syn keyword ngxDirectiveThirdParty passenger_group
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1344 syn keyword ngxDirectiveThirdParty passenger_default_user
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1345 syn keyword ngxDirectiveThirdParty passenger_default_group
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1346 syn keyword ngxDirectiveThirdParty passenger_show_version_in_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1347 syn keyword ngxDirectiveThirdParty passenger_friendly_error_pages
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1348 syn keyword ngxDirectiveThirdParty passenger_disable_security_update_check
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1349 syn keyword ngxDirectiveThirdParty passenger_security_update_check_proxy
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1350 syn keyword ngxDirectiveThirdParty passenger_max_pool_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1351 syn keyword ngxDirectiveThirdParty passenger_min_instances
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1352 syn keyword ngxDirectiveThirdParty passenger_max_instances
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1353 syn keyword ngxDirectiveThirdParty passenger_max_instances_per_app
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1354 syn keyword ngxDirectiveThirdParty passenger_pool_idle_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1355 syn keyword ngxDirectiveThirdParty passenger_max_preloader_idle_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1356 syn keyword ngxDirectiveThirdParty passenger_force_max_concurrent_requests_per_process
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1357 syn keyword ngxDirectiveThirdParty passenger_start_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1358 syn keyword ngxDirectiveThirdParty passenger_concurrency_model
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1359 syn keyword ngxDirectiveThirdParty passenger_thread_count
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1360 syn keyword ngxDirectiveThirdParty passenger_max_requests
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1361 syn keyword ngxDirectiveThirdParty passenger_max_request_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1362 syn keyword ngxDirectiveThirdParty passenger_memory_limit
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1363 syn keyword ngxDirectiveThirdParty passenger_stat_throttle_rate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1364 syn keyword ngxDirectiveThirdParty passenger_core_file_descriptor_ulimit
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1365 syn keyword ngxDirectiveThirdParty passenger_app_file_descriptor_ulimit
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1366 syn keyword ngxDirectiveThirdParty passenger_pre_start
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1367 syn keyword ngxDirectiveThirdParty passenger_set_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1368 syn keyword ngxDirectiveThirdParty passenger_max_request_queue_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1369 syn keyword ngxDirectiveThirdParty passenger_request_queue_overflow_status_code
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1370 syn keyword ngxDirectiveThirdParty passenger_sticky_sessions
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1371 syn keyword ngxDirectiveThirdParty passenger_sticky_sessions_cookie_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1372 syn keyword ngxDirectiveThirdParty passenger_abort_websockets_on_process_shutdown
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1373 syn keyword ngxDirectiveThirdParty passenger_ignore_client_abort
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1374 syn keyword ngxDirectiveThirdParty passenger_intercept_errors
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1375 syn keyword ngxDirectiveThirdParty passenger_pass_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1376 syn keyword ngxDirectiveThirdParty passenger_ignore_headers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1377 syn keyword ngxDirectiveThirdParty passenger_headers_hash_bucket_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1378 syn keyword ngxDirectiveThirdParty passenger_headers_hash_max_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1379 syn keyword ngxDirectiveThirdParty passenger_buffer_response
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1380 syn keyword ngxDirectiveThirdParty passenger_response_buffer_high_watermark
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1381 syn keyword ngxDirectiveThirdParty passenger_buffer_size, passenger_buffers, passenger_busy_buffers_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1382 syn keyword ngxDirectiveThirdParty passenger_socket_backlog
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1383 syn keyword ngxDirectiveThirdParty passenger_log_level
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1384 syn keyword ngxDirectiveThirdParty passenger_log_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1385 syn keyword ngxDirectiveThirdParty passenger_file_descriptor_log_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1386 syn keyword ngxDirectiveThirdParty passenger_debugger
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1387 syn keyword ngxDirectiveThirdParty passenger_instance_registry_dir
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1388 syn keyword ngxDirectiveThirdParty passenger_data_buffer_dir
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1389 syn keyword ngxDirectiveThirdParty passenger_fly_with
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1390 syn keyword ngxDirectiveThirdParty union_station_support
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1391 syn keyword ngxDirectiveThirdParty union_station_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1392 syn keyword ngxDirectiveThirdParty union_station_proxy_address
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1393 syn keyword ngxDirectiveThirdParty union_station_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1394 syn keyword ngxDirectiveThirdParty union_station_gateway_address
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1395 syn keyword ngxDirectiveThirdParty union_station_gateway_port
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1396 syn keyword ngxDirectiveThirdParty union_station_gateway_cert
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1397 syn keyword ngxDirectiveDeprecated rails_spawn_method
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1398 syn keyword ngxDirectiveDeprecated passenger_debug_log_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1399
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1400 " Postgres Module <http://labs.frickle.com/nginx_ngx_postgres/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1401 " Upstream module that allows nginx to communicate directly with PostgreSQL database.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1402 syn keyword ngxDirectiveThirdParty postgres_server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1403 syn keyword ngxDirectiveThirdParty postgres_keepalive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1404 syn keyword ngxDirectiveThirdParty postgres_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1405 syn keyword ngxDirectiveThirdParty postgres_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1406 syn keyword ngxDirectiveThirdParty postgres_rewrite
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1407 syn keyword ngxDirectiveThirdParty postgres_output
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1408 syn keyword ngxDirectiveThirdParty postgres_set
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1409 syn keyword ngxDirectiveThirdParty postgres_escape
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1410 syn keyword ngxDirectiveThirdParty postgres_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1411 syn keyword ngxDirectiveThirdParty postgres_result_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1412
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1413 " Pubcookie Module <https://www.vanko.me/book/page/pubcookie-module-nginx>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1414 " Authorizes users using encrypted cookies
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1415 syn keyword ngxDirectiveThirdParty pubcookie_inactive_expire
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1416 syn keyword ngxDirectiveThirdParty pubcookie_hard_expire
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1417 syn keyword ngxDirectiveThirdParty pubcookie_app_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1418 syn keyword ngxDirectiveThirdParty pubcookie_dir_depth
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1419 syn keyword ngxDirectiveThirdParty pubcookie_catenate_app_ids
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1420 syn keyword ngxDirectiveThirdParty pubcookie_app_srv_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1421 syn keyword ngxDirectiveThirdParty pubcookie_login
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1422 syn keyword ngxDirectiveThirdParty pubcookie_login_method
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1423 syn keyword ngxDirectiveThirdParty pubcookie_post
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1424 syn keyword ngxDirectiveThirdParty pubcookie_domain
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1425 syn keyword ngxDirectiveThirdParty pubcookie_granting_cert_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1426 syn keyword ngxDirectiveThirdParty pubcookie_session_key_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1427 syn keyword ngxDirectiveThirdParty pubcookie_session_cert_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1428 syn keyword ngxDirectiveThirdParty pubcookie_crypt_key_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1429 syn keyword ngxDirectiveThirdParty pubcookie_end_session
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1430 syn keyword ngxDirectiveThirdParty pubcookie_encryption
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1431 syn keyword ngxDirectiveThirdParty pubcookie_session_reauth
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1432 syn keyword ngxDirectiveThirdParty pubcookie_auth_type_names
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1433 syn keyword ngxDirectiveThirdParty pubcookie_no_prompt
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1434 syn keyword ngxDirectiveThirdParty pubcookie_on_demand
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1435 syn keyword ngxDirectiveThirdParty pubcookie_addl_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1436 syn keyword ngxDirectiveThirdParty pubcookie_no_obscure_cookies
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1437 syn keyword ngxDirectiveThirdParty pubcookie_no_clean_creds
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1438 syn keyword ngxDirectiveThirdParty pubcookie_egd_device
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1439 syn keyword ngxDirectiveThirdParty pubcookie_no_blank
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1440 syn keyword ngxDirectiveThirdParty pubcookie_super_debug
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1441 syn keyword ngxDirectiveThirdParty pubcookie_set_remote_user
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1442
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1443 " Push Stream Module <https://github.com/wandenberg/nginx-push-stream-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1444 " A pure stream http push technology for your Nginx setup
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1445 syn keyword ngxDirectiveThirdParty push_stream_channels_statistics
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1446 syn keyword ngxDirectiveThirdParty push_stream_publisher
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1447 syn keyword ngxDirectiveThirdParty push_stream_subscriber
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1448 syn keyword ngxDirectiveThirdParty push_stream_shared_memory_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1449 syn keyword ngxDirectiveThirdParty push_stream_channel_deleted_message_text
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1450 syn keyword ngxDirectiveThirdParty push_stream_channel_inactivity_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1451 syn keyword ngxDirectiveThirdParty push_stream_ping_message_text
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1452 syn keyword ngxDirectiveThirdParty push_stream_timeout_with_body
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1453 syn keyword ngxDirectiveThirdParty push_stream_message_ttl
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1454 syn keyword ngxDirectiveThirdParty push_stream_max_subscribers_per_channel
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1455 syn keyword ngxDirectiveThirdParty push_stream_max_messages_stored_per_channel
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1456 syn keyword ngxDirectiveThirdParty push_stream_max_channel_id_length
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1457 syn keyword ngxDirectiveThirdParty push_stream_max_number_of_channels
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1458 syn keyword ngxDirectiveThirdParty push_stream_max_number_of_wildcard_channels
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1459 syn keyword ngxDirectiveThirdParty push_stream_wildcard_channel_prefix
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1460 syn keyword ngxDirectiveThirdParty push_stream_events_channel_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1461 syn keyword ngxDirectiveThirdParty push_stream_channels_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1462 syn keyword ngxDirectiveThirdParty push_stream_store_messages
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1463 syn keyword ngxDirectiveThirdParty push_stream_channel_info_on_publish
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1464 syn keyword ngxDirectiveThirdParty push_stream_authorized_channels_only
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1465 syn keyword ngxDirectiveThirdParty push_stream_header_template_file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1466 syn keyword ngxDirectiveThirdParty push_stream_header_template
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1467 syn keyword ngxDirectiveThirdParty push_stream_message_template
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1468 syn keyword ngxDirectiveThirdParty push_stream_footer_template
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1469 syn keyword ngxDirectiveThirdParty push_stream_wildcard_channel_max_qtd
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1470 syn keyword ngxDirectiveThirdParty push_stream_ping_message_interval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1471 syn keyword ngxDirectiveThirdParty push_stream_subscriber_connection_ttl
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1472 syn keyword ngxDirectiveThirdParty push_stream_longpolling_connection_ttl
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1473 syn keyword ngxDirectiveThirdParty push_stream_websocket_allow_publish
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1474 syn keyword ngxDirectiveThirdParty push_stream_last_received_message_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1475 syn keyword ngxDirectiveThirdParty push_stream_last_received_message_tag
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1476 syn keyword ngxDirectiveThirdParty push_stream_last_event_id
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1477 syn keyword ngxDirectiveThirdParty push_stream_user_agent
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1478 syn keyword ngxDirectiveThirdParty push_stream_padding_by_user_agent
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1479 syn keyword ngxDirectiveThirdParty push_stream_allowed_origins
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1480 syn keyword ngxDirectiveThirdParty push_stream_allow_connections_to_events_channel
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1481
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1482 " rDNS Module <https://github.com/flant/nginx-http-rdns>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1483 " Make a reverse DNS (rDNS) lookup for incoming connection and provides simple access control of incoming hostname by allow/deny rules
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1484 syn keyword ngxDirectiveThirdParty rdns
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1485 syn keyword ngxDirectiveThirdParty rdns_allow
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1486 syn keyword ngxDirectiveThirdParty rdns_deny
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1487
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1488 " RDS CSV Module <https://github.com/openresty/rds-csv-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1489 " Nginx output filter module to convert Resty-DBD-Streams (RDS) to Comma-Separated Values (CSV)
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1490 syn keyword ngxDirectiveThirdParty rds_csv
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1491 syn keyword ngxDirectiveThirdParty rds_csv_row_terminator
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1492 syn keyword ngxDirectiveThirdParty rds_csv_field_separator
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1493 syn keyword ngxDirectiveThirdParty rds_csv_field_name_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1494 syn keyword ngxDirectiveThirdParty rds_csv_content_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1495 syn keyword ngxDirectiveThirdParty rds_csv_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1496
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1497 " RDS JSON Module <https://github.com/openresty/rds-json-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1498 " An output filter that formats Resty DBD Streams generated by ngx_drizzle and others to JSON
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1499 syn keyword ngxDirectiveThirdParty rds_json
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1500 syn keyword ngxDirectiveThirdParty rds_json_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1501 syn keyword ngxDirectiveThirdParty rds_json_format
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1502 syn keyword ngxDirectiveThirdParty rds_json_root
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1503 syn keyword ngxDirectiveThirdParty rds_json_success_property
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1504 syn keyword ngxDirectiveThirdParty rds_json_user_property
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1505 syn keyword ngxDirectiveThirdParty rds_json_errcode_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1506 syn keyword ngxDirectiveThirdParty rds_json_errstr_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1507 syn keyword ngxDirectiveThirdParty rds_json_ret
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1508 syn keyword ngxDirectiveThirdParty rds_json_content_type
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1509
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1510 " Redis Module <https://www.nginx.com/resources/wiki/modules/redis/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1511 " Use this module to perform simple caching
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1512 syn keyword ngxDirectiveThirdParty redis_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1513 syn keyword ngxDirectiveThirdParty redis_bind
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1514 syn keyword ngxDirectiveThirdParty redis_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1515 syn keyword ngxDirectiveThirdParty redis_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1516 syn keyword ngxDirectiveThirdParty redis_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1517 syn keyword ngxDirectiveThirdParty redis_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1518 syn keyword ngxDirectiveThirdParty redis_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1519 syn keyword ngxDirectiveThirdParty redis_gzip_flag
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1520
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1521 " Redis 2 Module <https://github.com/openresty/redis2-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1522 " Nginx upstream module for the Redis 2.0 protocol
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1523 syn keyword ngxDirectiveThirdParty redis2_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1524 syn keyword ngxDirectiveThirdParty redis2_raw_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1525 syn keyword ngxDirectiveThirdParty redis2_raw_queries
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1526 syn keyword ngxDirectiveThirdParty redis2_literal_raw_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1527 syn keyword ngxDirectiveThirdParty redis2_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1528 syn keyword ngxDirectiveThirdParty redis2_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1529 syn keyword ngxDirectiveThirdParty redis2_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1530 syn keyword ngxDirectiveThirdParty redis2_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1531 syn keyword ngxDirectiveThirdParty redis2_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1532 syn keyword ngxDirectiveThirdParty redis2_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1533
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1534 " Replace Filter Module <https://github.com/openresty/replace-filter-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1535 " Streaming regular expression replacement in response bodies
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1536 syn keyword ngxDirectiveThirdParty replace_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1537 syn keyword ngxDirectiveThirdParty replace_filter_types
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1538 syn keyword ngxDirectiveThirdParty replace_filter_max_buffered_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1539 syn keyword ngxDirectiveThirdParty replace_filter_last_modified
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1540 syn keyword ngxDirectiveThirdParty replace_filter_skip
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1541
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1542 " Roboo Module <https://github.com/yuri-gushin/Roboo>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1543 " HTTP Robot Mitigator
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1544
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1545 " RRD Graph Module <https://www.nginx.com/resources/wiki/modules/rrd_graph/>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1546 " This module provides an HTTP interface to RRDtool's graphing facilities.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1547 syn keyword ngxDirectiveThirdParty rrd_graph
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1548 syn keyword ngxDirectiveThirdParty rrd_graph_root
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1549
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1550 " RTMP Module <https://github.com/arut/nginx-rtmp-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1551 " NGINX-based Media Streaming Server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1552 syn keyword ngxDirectiveThirdParty rtmp
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1553 " syn keyword ngxDirectiveThirdParty server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1554 " syn keyword ngxDirectiveThirdParty listen
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1555 syn keyword ngxDirectiveThirdParty application
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1556 " syn keyword ngxDirectiveThirdParty timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1557 syn keyword ngxDirectiveThirdParty ping
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1558 syn keyword ngxDirectiveThirdParty ping_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1559 syn keyword ngxDirectiveThirdParty max_streams
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1560 syn keyword ngxDirectiveThirdParty ack_window
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1561 syn keyword ngxDirectiveThirdParty chunk_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1562 syn keyword ngxDirectiveThirdParty max_queue
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1563 syn keyword ngxDirectiveThirdParty max_message
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1564 syn keyword ngxDirectiveThirdParty out_queue
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1565 syn keyword ngxDirectiveThirdParty out_cork
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1566 " syn keyword ngxDirectiveThirdParty allow
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1567 " syn keyword ngxDirectiveThirdParty deny
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1568 syn keyword ngxDirectiveThirdParty exec_push
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1569 syn keyword ngxDirectiveThirdParty exec_pull
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1570 syn keyword ngxDirectiveThirdParty exec
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1571 syn keyword ngxDirectiveThirdParty exec_options
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1572 syn keyword ngxDirectiveThirdParty exec_static
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1573 syn keyword ngxDirectiveThirdParty exec_kill_signal
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1574 syn keyword ngxDirectiveThirdParty respawn
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1575 syn keyword ngxDirectiveThirdParty respawn_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1576 syn keyword ngxDirectiveThirdParty exec_publish
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1577 syn keyword ngxDirectiveThirdParty exec_play
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1578 syn keyword ngxDirectiveThirdParty exec_play_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1579 syn keyword ngxDirectiveThirdParty exec_publish_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1580 syn keyword ngxDirectiveThirdParty exec_record_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1581 syn keyword ngxDirectiveThirdParty live
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1582 syn keyword ngxDirectiveThirdParty meta
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1583 syn keyword ngxDirectiveThirdParty interleave
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1584 syn keyword ngxDirectiveThirdParty wait_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1585 syn keyword ngxDirectiveThirdParty wait_video
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1586 syn keyword ngxDirectiveThirdParty publish_notify
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1587 syn keyword ngxDirectiveThirdParty drop_idle_publisher
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1588 syn keyword ngxDirectiveThirdParty sync
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1589 syn keyword ngxDirectiveThirdParty play_restart
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1590 syn keyword ngxDirectiveThirdParty idle_streams
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1591 syn keyword ngxDirectiveThirdParty record
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1592 syn keyword ngxDirectiveThirdParty record_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1593 syn keyword ngxDirectiveThirdParty record_suffix
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1594 syn keyword ngxDirectiveThirdParty record_unique
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1595 syn keyword ngxDirectiveThirdParty record_append
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1596 syn keyword ngxDirectiveThirdParty record_lock
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1597 syn keyword ngxDirectiveThirdParty record_max_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1598 syn keyword ngxDirectiveThirdParty record_max_frames
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1599 syn keyword ngxDirectiveThirdParty record_interval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1600 syn keyword ngxDirectiveThirdParty recorder
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1601 syn keyword ngxDirectiveThirdParty record_notify
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1602 syn keyword ngxDirectiveThirdParty play
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1603 syn keyword ngxDirectiveThirdParty play_temp_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1604 syn keyword ngxDirectiveThirdParty play_local_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1605 syn keyword ngxDirectiveThirdParty pull
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1606 syn keyword ngxDirectiveThirdParty push
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1607 syn keyword ngxDirectiveThirdParty push_reconnect
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1608 syn keyword ngxDirectiveThirdParty session_relay
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1609 syn keyword ngxDirectiveThirdParty on_connect
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1610 syn keyword ngxDirectiveThirdParty on_play
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1611 syn keyword ngxDirectiveThirdParty on_publish
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1612 syn keyword ngxDirectiveThirdParty on_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1613 syn keyword ngxDirectiveThirdParty on_play_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1614 syn keyword ngxDirectiveThirdParty on_publish_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1615 syn keyword ngxDirectiveThirdParty on_record_done
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1616 syn keyword ngxDirectiveThirdParty on_update
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1617 syn keyword ngxDirectiveThirdParty notify_update_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1618 syn keyword ngxDirectiveThirdParty notify_update_strict
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1619 syn keyword ngxDirectiveThirdParty notify_relay_redirect
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1620 syn keyword ngxDirectiveThirdParty notify_method
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1621 syn keyword ngxDirectiveThirdParty hls
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1622 syn keyword ngxDirectiveThirdParty hls_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1623 syn keyword ngxDirectiveThirdParty hls_fragment
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1624 syn keyword ngxDirectiveThirdParty hls_playlist_length
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1625 syn keyword ngxDirectiveThirdParty hls_sync
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1626 syn keyword ngxDirectiveThirdParty hls_continuous
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1627 syn keyword ngxDirectiveThirdParty hls_nested
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1628 syn keyword ngxDirectiveThirdParty hls_base_url
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1629 syn keyword ngxDirectiveThirdParty hls_cleanup
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1630 syn keyword ngxDirectiveThirdParty hls_fragment_naming
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1631 syn keyword ngxDirectiveThirdParty hls_fragment_slicing
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1632 syn keyword ngxDirectiveThirdParty hls_variant
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1633 syn keyword ngxDirectiveThirdParty hls_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1634 syn keyword ngxDirectiveThirdParty hls_keys
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1635 syn keyword ngxDirectiveThirdParty hls_key_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1636 syn keyword ngxDirectiveThirdParty hls_key_url
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1637 syn keyword ngxDirectiveThirdParty hls_fragments_per_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1638 syn keyword ngxDirectiveThirdParty dash
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1639 syn keyword ngxDirectiveThirdParty dash_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1640 syn keyword ngxDirectiveThirdParty dash_fragment
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1641 syn keyword ngxDirectiveThirdParty dash_playlist_length
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1642 syn keyword ngxDirectiveThirdParty dash_nested
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1643 syn keyword ngxDirectiveThirdParty dash_cleanup
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1644 " syn keyword ngxDirectiveThirdParty access_log
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1645 " syn keyword ngxDirectiveThirdParty log_format
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1646 syn keyword ngxDirectiveThirdParty max_connections
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1647 syn keyword ngxDirectiveThirdParty rtmp_stat
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1648 syn keyword ngxDirectiveThirdParty rtmp_stat_stylesheet
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1649 syn keyword ngxDirectiveThirdParty rtmp_auto_push
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1650 syn keyword ngxDirectiveThirdParty rtmp_auto_push_reconnect
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1651 syn keyword ngxDirectiveThirdParty rtmp_socket_dir
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1652 syn keyword ngxDirectiveThirdParty rtmp_control
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1653
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1654 " RTMPT Module <https://github.com/kwojtek/nginx-rtmpt-proxy-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1655 " Module for nginx to proxy rtmp using http protocol
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1656 syn keyword ngxDirectiveThirdParty rtmpt_proxy_target
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1657 syn keyword ngxDirectiveThirdParty rtmpt_proxy_rtmp_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1658 syn keyword ngxDirectiveThirdParty rtmpt_proxy_http_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1659 syn keyword ngxDirectiveThirdParty rtmpt_proxy
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1660 syn keyword ngxDirectiveThirdParty rtmpt_proxy_stat
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1661 syn keyword ngxDirectiveThirdParty rtmpt_proxy_stylesheet
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1662
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1663 " Syntactically Awesome Module <https://github.com/mneudert/sass-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1664 " Providing on-the-fly compiling of Sass files as an NGINX module.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1665 syn keyword ngxDirectiveThirdParty sass_compile
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1666 syn keyword ngxDirectiveThirdParty sass_error_log
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1667 syn keyword ngxDirectiveThirdParty sass_include_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1668 syn keyword ngxDirectiveThirdParty sass_indent
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1669 syn keyword ngxDirectiveThirdParty sass_is_indented_syntax
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1670 syn keyword ngxDirectiveThirdParty sass_linefeed
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1671 syn keyword ngxDirectiveThirdParty sass_precision
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1672 syn keyword ngxDirectiveThirdParty sass_output_style
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1673 syn keyword ngxDirectiveThirdParty sass_source_comments
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1674 syn keyword ngxDirectiveThirdParty sass_source_map_embed
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1675
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1676 " Secure Download Module <https://www.nginx.com/resources/wiki/modules/secure_download/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1677 " Enables you to create links which are only valid until a certain datetime is reached
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1678 syn keyword ngxDirectiveThirdParty secure_download
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1679 syn keyword ngxDirectiveThirdParty secure_download_secret
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1680 syn keyword ngxDirectiveThirdParty secure_download_path_mode
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1681
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1682 " Selective Cache Purge Module <https://github.com/wandenberg/nginx-selective-cache-purge-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1683 " A module to purge cache by GLOB patterns. The supported patterns are the same as supported by Redis.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1684 syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_unix_socket
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1685 syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_host
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1686 syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_port
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1687 syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_database
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1688 syn keyword ngxDirectiveThirdParty selective_cache_purge_query
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1689
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1690 " Set cconv Module <https://github.com/liseen/set-cconv-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1691 " Cconv rewrite set commands
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1692 syn keyword ngxDirectiveThirdParty set_cconv_to_simp
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1693 syn keyword ngxDirectiveThirdParty set_cconv_to_trad
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1694 syn keyword ngxDirectiveThirdParty set_pinyin_to_normal
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1695
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1696 " Set Hash Module <https://github.com/simpl/ngx_http_set_hash>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1697 " Nginx module that allows the setting of variables to the value of a variety of hashes
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1698 syn keyword ngxDirectiveThirdParty set_md5
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1699 syn keyword ngxDirectiveThirdParty set_md5_upper
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1700 syn keyword ngxDirectiveThirdParty set_murmur2
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1701 syn keyword ngxDirectiveThirdParty set_murmur2_upper
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1702 syn keyword ngxDirectiveThirdParty set_sha1
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1703 syn keyword ngxDirectiveThirdParty set_sha1_upper
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1704
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1705 " Set Lang Module <https://github.com/simpl/ngx_http_set_lang>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1706 " Provides a variety of ways for setting a variable denoting the langauge that content should be returned in.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1707 syn keyword ngxDirectiveThirdParty set_lang
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1708 syn keyword ngxDirectiveThirdParty set_lang_method
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1709 syn keyword ngxDirectiveThirdParty lang_cookie
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1710 syn keyword ngxDirectiveThirdParty lang_get_var
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1711 syn keyword ngxDirectiveThirdParty lang_list
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1712 syn keyword ngxDirectiveThirdParty lang_post_var
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1713 syn keyword ngxDirectiveThirdParty lang_host
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1714 syn keyword ngxDirectiveThirdParty lang_referer
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1715
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1716 " Set Misc Module <https://github.com/openresty/set-misc-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1717 " Various set_xxx directives added to nginx's rewrite module
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1718 syn keyword ngxDirectiveThirdParty set_if_empty
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1719 syn keyword ngxDirectiveThirdParty set_quote_sql_str
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1720 syn keyword ngxDirectiveThirdParty set_quote_pgsql_str
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1721 syn keyword ngxDirectiveThirdParty set_quote_json_str
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1722 syn keyword ngxDirectiveThirdParty set_unescape_uri
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1723 syn keyword ngxDirectiveThirdParty set_escape_uri
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1724 syn keyword ngxDirectiveThirdParty set_hashed_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1725 syn keyword ngxDirectiveThirdParty set_encode_base32
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1726 syn keyword ngxDirectiveThirdParty set_base32_padding
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1727 syn keyword ngxDirectiveThirdParty set_misc_base32_padding
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1728 syn keyword ngxDirectiveThirdParty set_base32_alphabet
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1729 syn keyword ngxDirectiveThirdParty set_decode_base32
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1730 syn keyword ngxDirectiveThirdParty set_encode_base64
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1731 syn keyword ngxDirectiveThirdParty set_decode_base64
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1732 syn keyword ngxDirectiveThirdParty set_encode_hex
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1733 syn keyword ngxDirectiveThirdParty set_decode_hex
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1734 syn keyword ngxDirectiveThirdParty set_sha1
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1735 syn keyword ngxDirectiveThirdParty set_md5
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1736 syn keyword ngxDirectiveThirdParty set_hmac_sha1
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1737 syn keyword ngxDirectiveThirdParty set_random
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1738 syn keyword ngxDirectiveThirdParty set_secure_random_alphanum
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1739 syn keyword ngxDirectiveThirdParty set_secure_random_lcalpha
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1740 syn keyword ngxDirectiveThirdParty set_rotate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1741 syn keyword ngxDirectiveThirdParty set_local_today
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1742 syn keyword ngxDirectiveThirdParty set_formatted_gmt_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1743 syn keyword ngxDirectiveThirdParty set_formatted_local_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1744
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1745 " SFlow Module <https://github.com/sflow/nginx-sflow-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1746 " A binary, random-sampling nginx module designed for: lightweight, centralized, continuous, real-time monitoring of very large and very busy web farms.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1747 syn keyword ngxDirectiveThirdParty sflow
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1748
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1749 " Shibboleth Module <https://github.com/nginx-shib/nginx-http-shibboleth>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1750 " Shibboleth auth request module for nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1751 syn keyword ngxDirectiveThirdParty shib_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1752 syn keyword ngxDirectiveThirdParty shib_request_set
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1753 syn keyword ngxDirectiveThirdParty shib_request_use_headers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1754
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1755 " Slice Module <https://github.com/alibaba/nginx-http-slice>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1756 " Nginx module for serving a file in slices (reverse byte-range)
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1757 " syn keyword ngxDirectiveThirdParty slice
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1758 syn keyword ngxDirectiveThirdParty slice_arg_begin
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1759 syn keyword ngxDirectiveThirdParty slice_arg_end
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1760 syn keyword ngxDirectiveThirdParty slice_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1761 syn keyword ngxDirectiveThirdParty slice_footer
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1762 syn keyword ngxDirectiveThirdParty slice_header_first
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1763 syn keyword ngxDirectiveThirdParty slice_footer_last
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1764
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1765 " SlowFS Cache Module <https://github.com/FRiCKLE/ngx_slowfs_cache/>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1766 " Module adding ability to cache static files.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1767 syn keyword ngxDirectiveThirdParty slowfs_big_file_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1768 syn keyword ngxDirectiveThirdParty slowfs_cache
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1769 syn keyword ngxDirectiveThirdParty slowfs_cache_key
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1770 syn keyword ngxDirectiveThirdParty slowfs_cache_min_uses
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1771 syn keyword ngxDirectiveThirdParty slowfs_cache_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1772 syn keyword ngxDirectiveThirdParty slowfs_cache_purge
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1773 syn keyword ngxDirectiveThirdParty slowfs_cache_valid
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1774 syn keyword ngxDirectiveThirdParty slowfs_temp_path
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1775
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1776 " Small Light Module <https://github.com/cubicdaiya/ngx_small_light>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1777 " Dynamic Image Transformation Module For nginx.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1778 syn keyword ngxDirectiveThirdParty small_light
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1779 syn keyword ngxDirectiveThirdParty small_light_getparam_mode
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1780 syn keyword ngxDirectiveThirdParty small_light_material_dir
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1781 syn keyword ngxDirectiveThirdParty small_light_pattern_define
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1782 syn keyword ngxDirectiveThirdParty small_light_radius_max
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1783 syn keyword ngxDirectiveThirdParty small_light_sigma_max
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1784 syn keyword ngxDirectiveThirdParty small_light_imlib2_temp_dir
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1785 syn keyword ngxDirectiveThirdParty small_light_buffer
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1786
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1787 " Sorted Querystring Filter Module <https://github.com/wandenberg/nginx-sorted-querystring-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1788 " Nginx module to expose querystring parameters sorted in a variable to be used on cache_key as example
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1789 syn keyword ngxDirectiveThirdParty sorted_querystring_filter_parameter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1790
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1791 " Sphinx2 Module <https://github.com/reeteshranjan/sphinx2-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1792 " Nginx upstream module for Sphinx 2.x
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1793 syn keyword ngxDirectiveThirdParty sphinx2_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1794 syn keyword ngxDirectiveThirdParty sphinx2_bind
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1795 syn keyword ngxDirectiveThirdParty sphinx2_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1796 syn keyword ngxDirectiveThirdParty sphinx2_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1797 syn keyword ngxDirectiveThirdParty sphinx2_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1798 syn keyword ngxDirectiveThirdParty sphinx2_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1799 syn keyword ngxDirectiveThirdParty sphinx2_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1800
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1801 " HTTP SPNEGO auth Module <https://github.com/stnoonan/spnego-http-auth-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1802 " This module implements adds SPNEGO support to nginx(http://nginx.org). It currently supports only Kerberos authentication via GSSAPI
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1803 syn keyword ngxDirectiveThirdParty auth_gss
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1804 syn keyword ngxDirectiveThirdParty auth_gss_keytab
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1805 syn keyword ngxDirectiveThirdParty auth_gss_realm
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1806 syn keyword ngxDirectiveThirdParty auth_gss_service_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1807 syn keyword ngxDirectiveThirdParty auth_gss_authorized_principal
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1808 syn keyword ngxDirectiveThirdParty auth_gss_allow_basic_fallback
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1809
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1810 " SR Cache Module <https://github.com/openresty/srcache-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1811 " Transparent subrequest-based caching layout for arbitrary nginx locations
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1812 syn keyword ngxDirectiveThirdParty srcache_fetch
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1813 syn keyword ngxDirectiveThirdParty srcache_fetch_skip
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1814 syn keyword ngxDirectiveThirdParty srcache_store
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1815 syn keyword ngxDirectiveThirdParty srcache_store_max_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1816 syn keyword ngxDirectiveThirdParty srcache_store_skip
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1817 syn keyword ngxDirectiveThirdParty srcache_store_statuses
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1818 syn keyword ngxDirectiveThirdParty srcache_store_ranges
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1819 syn keyword ngxDirectiveThirdParty srcache_header_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1820 syn keyword ngxDirectiveThirdParty srcache_store_hide_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1821 syn keyword ngxDirectiveThirdParty srcache_store_pass_header
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1822 syn keyword ngxDirectiveThirdParty srcache_methods
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1823 syn keyword ngxDirectiveThirdParty srcache_ignore_content_encoding
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1824 syn keyword ngxDirectiveThirdParty srcache_request_cache_control
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1825 syn keyword ngxDirectiveThirdParty srcache_response_cache_control
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1826 syn keyword ngxDirectiveThirdParty srcache_store_no_store
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1827 syn keyword ngxDirectiveThirdParty srcache_store_no_cache
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1828 syn keyword ngxDirectiveThirdParty srcache_store_private
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1829 syn keyword ngxDirectiveThirdParty srcache_default_expire
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1830 syn keyword ngxDirectiveThirdParty srcache_max_expire
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1831
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1832 " SSSD Info Module <https://github.com/veruu/ngx_sssd_info>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1833 " Retrives additional attributes from SSSD for current authentizated user
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1834 syn keyword ngxDirectiveThirdParty sssd_info
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1835 syn keyword ngxDirectiveThirdParty sssd_info_output_to
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1836 syn keyword ngxDirectiveThirdParty sssd_info_groups
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1837 syn keyword ngxDirectiveThirdParty sssd_info_group
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1838 syn keyword ngxDirectiveThirdParty sssd_info_group_separator
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1839 syn keyword ngxDirectiveThirdParty sssd_info_attributes
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1840 syn keyword ngxDirectiveThirdParty sssd_info_attribute
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1841 syn keyword ngxDirectiveThirdParty sssd_info_attribute_separator
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1842
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1843 " Static Etags Module <https://github.com/mikewest/nginx-static-etags>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1844 " Generate etags for static content
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1845 syn keyword ngxDirectiveThirdParty FileETag
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1846
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1847 " Statsd Module <https://github.com/zebrafishlabs/nginx-statsd>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1848 " An nginx module for sending statistics to statsd
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1849 syn keyword ngxDirectiveThirdParty statsd_server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1850 syn keyword ngxDirectiveThirdParty statsd_sample_rate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1851 syn keyword ngxDirectiveThirdParty statsd_count
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1852 syn keyword ngxDirectiveThirdParty statsd_timing
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1853
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1854 " Sticky Module <https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1855 " Add a sticky cookie to be always forwarded to the same upstream server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1856 " syn keyword ngxDirectiveThirdParty sticky
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1857
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1858 " Stream Echo Module <https://github.com/openresty/stream-echo-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1859 " TCP/stream echo module for NGINX (a port of ngx_http_echo_module)
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1860 syn keyword ngxDirectiveThirdParty echo
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1861 syn keyword ngxDirectiveThirdParty echo_duplicate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1862 syn keyword ngxDirectiveThirdParty echo_flush_wait
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1863 syn keyword ngxDirectiveThirdParty echo_sleep
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1864 syn keyword ngxDirectiveThirdParty echo_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1865 syn keyword ngxDirectiveThirdParty echo_read_bytes
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1866 syn keyword ngxDirectiveThirdParty echo_read_line
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1867 syn keyword ngxDirectiveThirdParty echo_request_data
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1868 syn keyword ngxDirectiveThirdParty echo_discard_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1869 syn keyword ngxDirectiveThirdParty echo_read_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1870 syn keyword ngxDirectiveThirdParty echo_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1871 syn keyword ngxDirectiveThirdParty echo_client_error_log_level
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1872 syn keyword ngxDirectiveThirdParty echo_lingering_close
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1873 syn keyword ngxDirectiveThirdParty echo_lingering_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1874 syn keyword ngxDirectiveThirdParty echo_lingering_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1875
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1876 " Stream Lua Module <https://github.com/openresty/stream-lua-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1877 " Embed the power of Lua into Nginx stream/TCP Servers.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1878 syn keyword ngxDirectiveThirdParty lua_resolver
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1879 syn keyword ngxDirectiveThirdParty lua_resolver_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1880 syn keyword ngxDirectiveThirdParty lua_lingering_close
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1881 syn keyword ngxDirectiveThirdParty lua_lingering_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1882 syn keyword ngxDirectiveThirdParty lua_lingering_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1883
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1884 " Stream Upsync Module <https://github.com/xiaokai-wang/nginx-stream-upsync-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1885 " Sync upstreams from consul or others, dynamiclly modify backend-servers attribute(weight, max_fails,...), needn't reload nginx.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1886 syn keyword ngxDirectiveThirdParty upsync
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1887 syn keyword ngxDirectiveThirdParty upsync_dump_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1888 syn keyword ngxDirectiveThirdParty upsync_lb
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1889 syn keyword ngxDirectiveThirdParty upsync_show
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1890
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1891 " Strip Module <https://github.com/evanmiller/mod_strip>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1892 " Whitespace remover.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1893 syn keyword ngxDirectiveThirdParty strip
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1894
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1895 " Subrange Module <https://github.com/Qihoo360/ngx_http_subrange_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1896 " Split one big HTTP/Range request to multiple subrange requesets
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1897 syn keyword ngxDirectiveThirdParty subrange
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1898
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1899 " Substitutions Module <https://www.nginx.com/resources/wiki/modules/substitutions/>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1900 " A filter module which can do both regular expression and fixed string substitutions on response bodies.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1901 syn keyword ngxDirectiveThirdParty subs_filter
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1902 syn keyword ngxDirectiveThirdParty subs_filter_types
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1903
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1904 " Summarizer Module <https://github.com/reeteshranjan/summarizer-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1905 " Upstream nginx module to get summaries of documents using the summarizer daemon service
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1906 syn keyword ngxDirectiveThirdParty smrzr_filename
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1907 syn keyword ngxDirectiveThirdParty smrzr_ratio
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1908
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1909 " Supervisord Module <https://github.com/FRiCKLE/ngx_supervisord/>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1910 " Module providing nginx with API to communicate with supervisord and manage (start/stop) backends on-demand.
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1911 syn keyword ngxDirectiveThirdParty supervisord
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1912 syn keyword ngxDirectiveThirdParty supervisord_inherit_backend_status
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1913 syn keyword ngxDirectiveThirdParty supervisord_name
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1914 syn keyword ngxDirectiveThirdParty supervisord_start
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1915 syn keyword ngxDirectiveThirdParty supervisord_stop
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1916
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1917 " Tarantool Upstream Module <https://github.com/tarantool/nginx_upstream_module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1918 " Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1919 syn keyword ngxDirectiveThirdParty tnt_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1920 syn keyword ngxDirectiveThirdParty tnt_http_methods
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1921 syn keyword ngxDirectiveThirdParty tnt_http_rest_methods
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1922 syn keyword ngxDirectiveThirdParty tnt_pass_http_request
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1923 syn keyword ngxDirectiveThirdParty tnt_pass_http_request_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1924 syn keyword ngxDirectiveThirdParty tnt_method
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1925 syn keyword ngxDirectiveThirdParty tnt_http_allowed_methods - experemental
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1926 syn keyword ngxDirectiveThirdParty tnt_send_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1927 syn keyword ngxDirectiveThirdParty tnt_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1928 syn keyword ngxDirectiveThirdParty tnt_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1929 syn keyword ngxDirectiveThirdParty tnt_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1930 syn keyword ngxDirectiveThirdParty tnt_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1931 syn keyword ngxDirectiveThirdParty tnt_next_upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1932 syn keyword ngxDirectiveThirdParty tnt_next_upstream_tries
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1933 syn keyword ngxDirectiveThirdParty tnt_next_upstream_timeout
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
1934
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1935 " TCP Proxy Module <http://yaoweibin.github.io/nginx_tcp_proxy_module/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1936 " Add the feature of tcp proxy with nginx, with health check and status monitor
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1937 syn keyword ngxDirectiveBlock tcp
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1938 " syn keyword ngxDirectiveThirdParty server
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1939 " syn keyword ngxDirectiveThirdParty listen
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1940 " syn keyword ngxDirectiveThirdParty allow
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1941 " syn keyword ngxDirectiveThirdParty deny
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1942 " syn keyword ngxDirectiveThirdParty so_keepalive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1943 " syn keyword ngxDirectiveThirdParty tcp_nodelay
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1944 " syn keyword ngxDirectiveThirdParty timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1945 " syn keyword ngxDirectiveThirdParty server_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1946 " syn keyword ngxDirectiveThirdParty resolver
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1947 " syn keyword ngxDirectiveThirdParty resolver_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1948 " syn keyword ngxDirectiveThirdParty upstream
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1949 syn keyword ngxDirectiveThirdParty check
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1950 syn keyword ngxDirectiveThirdParty check_http_send
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1951 syn keyword ngxDirectiveThirdParty check_http_expect_alive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1952 syn keyword ngxDirectiveThirdParty check_smtp_send
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1953 syn keyword ngxDirectiveThirdParty check_smtp_expect_alive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1954 syn keyword ngxDirectiveThirdParty check_shm_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1955 syn keyword ngxDirectiveThirdParty check_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1956 " syn keyword ngxDirectiveThirdParty ip_hash
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1957 " syn keyword ngxDirectiveThirdParty proxy_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1958 " syn keyword ngxDirectiveThirdParty proxy_buffer
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1959 " syn keyword ngxDirectiveThirdParty proxy_connect_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1960 " syn keyword ngxDirectiveThirdParty proxy_read_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1961 syn keyword ngxDirectiveThirdParty proxy_write_timeout
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1962
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1963 " Testcookie Module <https://github.com/kyprizel/testcookie-nginx-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1964 " NGINX module for L7 DDoS attack mitigation
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1965 syn keyword ngxDirectiveThirdParty testcookie
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1966 syn keyword ngxDirectiveThirdParty testcookie_name
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1967 syn keyword ngxDirectiveThirdParty testcookie_domain
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1968 syn keyword ngxDirectiveThirdParty testcookie_expires
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1969 syn keyword ngxDirectiveThirdParty testcookie_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1970 syn keyword ngxDirectiveThirdParty testcookie_secret
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1971 syn keyword ngxDirectiveThirdParty testcookie_session
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1972 syn keyword ngxDirectiveThirdParty testcookie_arg
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1973 syn keyword ngxDirectiveThirdParty testcookie_max_attempts
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1974 syn keyword ngxDirectiveThirdParty testcookie_p3p
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1975 syn keyword ngxDirectiveThirdParty testcookie_fallback
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1976 syn keyword ngxDirectiveThirdParty testcookie_whitelist
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1977 syn keyword ngxDirectiveThirdParty testcookie_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1978 syn keyword ngxDirectiveThirdParty testcookie_redirect_via_refresh
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1979 syn keyword ngxDirectiveThirdParty testcookie_refresh_template
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1980 syn keyword ngxDirectiveThirdParty testcookie_refresh_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1981 syn keyword ngxDirectiveThirdParty testcookie_deny_keepalive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1982 syn keyword ngxDirectiveThirdParty testcookie_get_only
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1983 syn keyword ngxDirectiveThirdParty testcookie_https_location
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1984 syn keyword ngxDirectiveThirdParty testcookie_refresh_encrypt_cookie
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1985 syn keyword ngxDirectiveThirdParty testcookie_refresh_encrypt_cookie_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1986 syn keyword ngxDirectiveThirdParty testcookie_refresh_encrypt_iv
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1987 syn keyword ngxDirectiveThirdParty testcookie_internal
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1988 syn keyword ngxDirectiveThirdParty testcookie_httponly_flag
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1989 syn keyword ngxDirectiveThirdParty testcookie_secure_flag
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1990
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1991 " Types Filter Module <https://github.com/flygoast/ngx_http_types_filter>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1992 " Change the `Content-Type` output header depending on an extension variable according to a condition specified in the 'if' clause.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1993 syn keyword ngxDirectiveThirdParty types_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1994 syn keyword ngxDirectiveThirdParty types_filter_use_default
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1995
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1996 " Unzip Module <https://github.com/youzee/nginx-unzip-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1997 " Enabling fetching of files that are stored in zipped archives.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1998 syn keyword ngxDirectiveThirdParty file_in_unzip_archivefile
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
1999 syn keyword ngxDirectiveThirdParty file_in_unzip_extract
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2000 syn keyword ngxDirectiveThirdParty file_in_unzip
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2001
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2002 " Upload Progress Module <https://www.nginx.com/resources/wiki/modules/upload_progress/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2003 " An upload progress system, that monitors RFC1867 POST upload as they are transmitted to upstream servers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2004 syn keyword ngxDirectiveThirdParty upload_progress
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2005 syn keyword ngxDirectiveThirdParty track_uploads
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2006 syn keyword ngxDirectiveThirdParty report_uploads
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2007 syn keyword ngxDirectiveThirdParty upload_progress_content_type
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2008 syn keyword ngxDirectiveThirdParty upload_progress_header
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2009 syn keyword ngxDirectiveThirdParty upload_progress_jsonp_parameter
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2010 syn keyword ngxDirectiveThirdParty upload_progress_json_output
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2011 syn keyword ngxDirectiveThirdParty upload_progress_jsonp_output
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2012 syn keyword ngxDirectiveThirdParty upload_progress_template
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2013
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2014 " Upload Module <https://www.nginx.com/resources/wiki/modules/upload/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2015 " Parses request body storing all files being uploaded to a directory specified by upload_store directive
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2016 syn keyword ngxDirectiveThirdParty upload_pass
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2017 syn keyword ngxDirectiveThirdParty upload_resumable
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2018 syn keyword ngxDirectiveThirdParty upload_store
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2019 syn keyword ngxDirectiveThirdParty upload_state_store
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2020 syn keyword ngxDirectiveThirdParty upload_store_access
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2021 syn keyword ngxDirectiveThirdParty upload_set_form_field
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2022 syn keyword ngxDirectiveThirdParty upload_aggregate_form_field
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2023 syn keyword ngxDirectiveThirdParty upload_pass_form_field
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2024 syn keyword ngxDirectiveThirdParty upload_cleanup
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2025 syn keyword ngxDirectiveThirdParty upload_buffer_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2026 syn keyword ngxDirectiveThirdParty upload_max_part_header_len
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2027 syn keyword ngxDirectiveThirdParty upload_max_file_size
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2028 syn keyword ngxDirectiveThirdParty upload_limit_rate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2029 syn keyword ngxDirectiveThirdParty upload_max_output_body_len
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2030 syn keyword ngxDirectiveThirdParty upload_tame_arrays
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2031 syn keyword ngxDirectiveThirdParty upload_pass_args
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2032
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2033 " Upstream Fair Module <https://github.com/gnosek/nginx-upstream-fair>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2034 " The fair load balancer module for nginx http://nginx.localdomain.pl
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2035 syn keyword ngxDirectiveThirdParty fair
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2036 syn keyword ngxDirectiveThirdParty upstream_fair_shm_size
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2037
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2038 " Upstream Hash Module (DEPRECATED) <http://wiki.nginx.org/NginxHttpUpstreamRequestHashModule>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2039 " Provides simple upstream load distribution by hashing a configurable variable.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2040 " syn keyword ngxDirectiveDeprecated hash
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2041 syn keyword ngxDirectiveDeprecated hash_again
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2042
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2043 " Upstream Domain Resolve Module <https://www.nginx.com/resources/wiki/modules/domain_resolve/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2044 " A load-balancer that resolves an upstream domain name asynchronously.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2045 syn keyword ngxDirectiveThirdParty jdomain
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2046
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2047 " Upsync Module <https://github.com/weibocom/nginx-upsync-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2048 " Sync upstreams from consul or others, dynamiclly modify backend-servers attribute(weight, max_fails,...), needn't reload nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2049 syn keyword ngxDirectiveThirdParty upsync
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2050 syn keyword ngxDirectiveThirdParty upsync_dump_path
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2051 syn keyword ngxDirectiveThirdParty upsync_lb
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2052 syn keyword ngxDirectiveThirdParty upstream_show
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2053
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2054 " URL Module <https://github.com/vozlt/nginx-module-url>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2055 " Nginx url encoding converting module
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2056 syn keyword ngxDirectiveThirdParty url_encoding_convert
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2057 syn keyword ngxDirectiveThirdParty url_encoding_convert_from
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2058 syn keyword ngxDirectiveThirdParty url_encoding_convert_to
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2059
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2060 " User Agent Module <https://github.com/alibaba/nginx-http-user-agent>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2061 " Match browsers and crawlers
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2062 syn keyword ngxDirectiveThirdParty user_agent
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2063
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2064 " Upstrema Ketama Chash Module <https://github.com/flygoast/ngx_http_upstream_ketama_chash>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2065 " Nginx load-balancer module implementing ketama consistent hashing.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2066 syn keyword ngxDirectiveThirdParty ketama_chash
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2067
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2068 " Video Thumbextractor Module <https://github.com/wandenberg/nginx-video-thumbextractor-module>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2069 " Extract thumbs from a video file
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2070 syn keyword ngxDirectiveThirdParty video_thumbextractor
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2071 syn keyword ngxDirectiveThirdParty video_thumbextractor_video_filename
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2072 syn keyword ngxDirectiveThirdParty video_thumbextractor_video_second
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2073 syn keyword ngxDirectiveThirdParty video_thumbextractor_image_width
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2074 syn keyword ngxDirectiveThirdParty video_thumbextractor_image_height
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2075 syn keyword ngxDirectiveThirdParty video_thumbextractor_only_keyframe
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2076 syn keyword ngxDirectiveThirdParty video_thumbextractor_next_time
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2077 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_rows
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2078 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_cols
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2079 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_max_rows
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2080 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_max_cols
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2081 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_sample_interval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2082 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_color
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2083 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_margin
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2084 syn keyword ngxDirectiveThirdParty video_thumbextractor_tile_padding
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2085 syn keyword ngxDirectiveThirdParty video_thumbextractor_threads
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2086 syn keyword ngxDirectiveThirdParty video_thumbextractor_processes_per_worker
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2087
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2088 " Eval Module <http://www.grid.net.ru/nginx/eval.en.html>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2089 " Module for nginx web server evaluates response of proxy or memcached module into variables.
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2090 syn keyword ngxDirectiveThirdParty eval
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2091 syn keyword ngxDirectiveThirdParty eval_escalate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2092 syn keyword ngxDirectiveThirdParty eval_override_content_type
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2093
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2094 " VTS Module <https://github.com/vozlt/nginx-module-vts>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2095 " Nginx virtual host traffic status module
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2096 syn keyword ngxDirectiveThirdParty vhost_traffic_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2097 syn keyword ngxDirectiveThirdParty vhost_traffic_status_zone
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2098 syn keyword ngxDirectiveThirdParty vhost_traffic_status_display
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2099 syn keyword ngxDirectiveThirdParty vhost_traffic_status_display_format
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2100 syn keyword ngxDirectiveThirdParty vhost_traffic_status_display_jsonp
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2101 syn keyword ngxDirectiveThirdParty vhost_traffic_status_filter
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2102 syn keyword ngxDirectiveThirdParty vhost_traffic_status_filter_by_host
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2103 syn keyword ngxDirectiveThirdParty vhost_traffic_status_filter_by_set_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2104 syn keyword ngxDirectiveThirdParty vhost_traffic_status_filter_check_duplicate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2105 syn keyword ngxDirectiveThirdParty vhost_traffic_status_limit
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2106 syn keyword ngxDirectiveThirdParty vhost_traffic_status_limit_traffic
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2107 syn keyword ngxDirectiveThirdParty vhost_traffic_status_limit_traffic_by_set_key
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2108 syn keyword ngxDirectiveThirdParty vhost_traffic_status_limit_check_duplicate
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2109
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2110 " XSS Module <https://github.com/openresty/xss-nginx-module>
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2111 " Native support for cross-site scripting (XSS) in an nginx.
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2112 syn keyword ngxDirectiveThirdParty xss_get
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2113 syn keyword ngxDirectiveThirdParty xss_callback_arg
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2114 syn keyword ngxDirectiveThirdParty xss_override_status
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2115 syn keyword ngxDirectiveThirdParty xss_check_status
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2116 syn keyword ngxDirectiveThirdParty xss_input_types
6921
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2117
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2118 " ZIP Module <https://www.nginx.com/resources/wiki/modules/zip/>
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2119 " ZIP archiver for nginx
7fca6f60d5ca Contrib: vim syntax, update 3rd party module directives.
othree <othree@gmail.com>
parents: 6919
diff changeset
2120
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2121
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2122 " highlight
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2123
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2124 hi link ngxComment Comment
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2125 hi link ngxVariable Identifier
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2126 hi link ngxVariableBlock Identifier
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2127 hi link ngxVariableString PreProc
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2128 hi link ngxBlock Normal
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2129 hi link ngxString String
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2130
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2131 hi link ngxBoolean Boolean
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2132 hi link ngxDirectiveBlock Statement
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2133 hi link ngxDirectiveImportant Type
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2134 hi link ngxDirectiveControl Keyword
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2135 hi link ngxDirectiveError Constant
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2136 hi link ngxDirectiveDeprecated Error
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2137 hi link ngxDirective Identifier
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2138 hi link ngxDirectiveThirdParty Special
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2139
6918
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
2140 hi link ngxListenOptions Keyword
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
2141 hi link ngxMailProtocol Keyword
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
2142 hi link ngxSSLProtocol Keyword
00903b2132ed Contrib: vim syntax, listen option and SSL/Mail protocol keywords.
othree <othree@gmail.com>
parents: 6504
diff changeset
2143
5460
f38043bd15f5 Contrib: add vim scripts to contrib/ directory.
Evan Miller <emmiller@gmail.com>
parents:
diff changeset
2144 let b:current_syntax = "nginx"