@@ -9,13 +9,12 @@ setlocal iskeyword+=.
9
9
setlocal iskeyword += /
10
10
setlocal iskeyword += :
11
11
12
- syn match ngxVariable ' \$\w\w *'
13
- syn match ngxVariableBlock ' \$\w\w *' contained
14
- syn match ngxVariableString ' \$\w\w *' contained
15
- syn region ngxBlock start =+ ^+ end =+ {+ contains =ngxComment,ngxDirectiveBlock,ngxVariableBlock,ngxString oneline
16
- syn region ngxString start =+ "+ end =+ "+ skip =+ \\\\\|\\ "+ contains =ngxVariableString oneline
17
- syn region ngxString start =+ '+ end =+ '+ skip =+ \\\\\|\\ '+ contains =ngxVariableString oneline
18
- syn match ngxComment ' \s *#.*$'
12
+ syn match ngxVariable ' \$\(\w\+\| {\w\+ }\) '
13
+ syn match ngxVariableBlock ' \$\(\w\+\| {\w\+ }\) ' contained
14
+ syn match ngxVariableString ' \$\(\w\+\| {\w\+ }\) ' contained
15
+ syn region ngxBlock start =+ ^+ end =+ {+ skip =+ \$ {+ contains =ngxComment,ngxDirectiveBlock,ngxVariableBlock,ngxString oneline
16
+ syn region ngxString start =+ \z (["']\) + end =+ \z 1+ skip =+ \\\\\|\\\z 1+ contains =ngxVariableString
17
+ syn match ngxComment ' *#.*$'
19
18
20
19
syn keyword ngxBoolean on
21
20
syn keyword ngxBoolean off
@@ -643,6 +642,46 @@ syn keyword ngxDirectiveThirdParty xss_get
643
642
syn keyword ngxDirectiveThirdParty xss_input_types
644
643
syn keyword ngxDirectiveThirdParty xss_output_type
645
644
645
+ " uWSGI Module <http://wiki.nginx.org/HttpUwsgiModule>
646
+ " Allows Nginx to interact with uWSGI processes and control what parameters are passed to the process.
647
+ syn keyword ngxDirectiveThirdParty uwsgi_bind
648
+ syn keyword ngxDirectiveThirdParty uwsgi_buffer_size
649
+ syn keyword ngxDirectiveThirdParty uwsgi_buffering
650
+ syn keyword ngxDirectiveThirdParty uwsgi_buffers
651
+ syn keyword ngxDirectiveThirdParty uwsgi_busy_buffers_size
652
+ syn keyword ngxDirectiveThirdParty uwsgi_cache
653
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_bypass
654
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_key
655
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_lock
656
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_lock_timeout
657
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_methods
658
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_min_uses
659
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_path
660
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_use_stale
661
+ syn keyword ngxDirectiveThirdParty uwsgi_cache_valid
662
+ syn keyword ngxDirectiveThirdParty uwsgi_connect_timeout
663
+ syn keyword ngxDirectiveThirdParty uwsgi_hide_header
664
+ syn keyword ngxDirectiveThirdParty uwsgi_ignore_client_abort
665
+ syn keyword ngxDirectiveThirdParty uwsgi_ignore_headers
666
+ syn keyword ngxDirectiveThirdParty uwsgi_intercept_errors
667
+ syn keyword ngxDirectiveThirdParty uwsgi_max_temp_file_size
668
+ syn keyword ngxDirectiveThirdParty uwsgi_modifier1
669
+ syn keyword ngxDirectiveThirdParty uwsgi_modifier2
670
+ syn keyword ngxDirectiveThirdParty uwsgi_next_upstream
671
+ syn keyword ngxDirectiveThirdParty uwsgi_no_cache
672
+ syn keyword ngxDirectiveThirdParty uwsgi_param
673
+ syn keyword ngxDirectiveThirdParty uwsgi_pass
674
+ syn keyword ngxDirectiveThirdParty uwsgi_pass_header
675
+ syn keyword ngxDirectiveThirdParty uwsgi_pass_request_body
676
+ syn keyword ngxDirectiveThirdParty uwsgi_pass_request_headers
677
+ syn keyword ngxDirectiveThirdParty uwsgi_read_timeout
678
+ syn keyword ngxDirectiveThirdParty uwsgi_send_timeout
679
+ syn keyword ngxDirectiveThirdParty uwsgi_store
680
+ syn keyword ngxDirectiveThirdParty uwsgi_store_access
681
+ syn keyword ngxDirectiveThirdParty uwsgi_string
682
+ syn keyword ngxDirectiveThirdParty uwsgi_temp_file_write_size
683
+ syn keyword ngxDirectiveThirdParty uwsgi_temp_path
684
+
646
685
" highlight
647
686
648
687
hi link ngxComment Comment
0 commit comments