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