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