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