diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-02-02 21:16:29 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-02-02 21:16:29 +0100 |
commit | e685e4b431ab017d1aec9f9668fbeeeb6e7113e6 (patch) | |
tree | 47137f448d461ebb6852d81c6f553d0843e33764 /syntax/modules/tcp-proxy.vim | |
parent | e404a658b1647fad396a954776eda0bdabf8353c (diff) | |
download | vim-polyglot-e685e4b431ab017d1aec9f9668fbeeeb6e7113e6.tar.gz vim-polyglot-e685e4b431ab017d1aec9f9668fbeeeb6e7113e6.zip |
Update
Diffstat (limited to 'syntax/modules/tcp-proxy.vim')
-rw-r--r-- | syntax/modules/tcp-proxy.vim | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/syntax/modules/tcp-proxy.vim b/syntax/modules/tcp-proxy.vim index bfe03623..6f7732da 100644 --- a/syntax/modules/tcp-proxy.vim +++ b/syntax/modules/tcp-proxy.vim @@ -1,20 +1,19 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 " TCP Proxy Module <http://yaoweibin.github.io/nginx_tcp_proxy_module/> -" Add the feature of tcp proxy with nginx, with health check and status monitor -syn keyword ngxDirectiveThirdParty tcp -syn keyword ngxDirectiveThirdParty server -syn keyword ngxDirectiveThirdParty listen -syn keyword ngxDirectiveThirdParty allow -syn keyword ngxDirectiveThirdParty deny -syn keyword ngxDirectiveThirdParty so_keepalive -syn keyword ngxDirectiveThirdParty tcp_nodelay -syn keyword ngxDirectiveThirdParty timeout -syn keyword ngxDirectiveThirdParty server_name -syn keyword ngxDirectiveThirdParty resolver -syn keyword ngxDirectiveThirdParty resolver_timeout -syn keyword ngxDirectiveThirdParty upstream -syn keyword ngxDirectiveThirdParty server +" Add the feature of tcp proxy with nginx, with health check and status monitor +syn keyword ngxDirectiveBlock tcp +" syn keyword ngxDirectiveThirdParty server +" syn keyword ngxDirectiveThirdParty listen +" syn keyword ngxDirectiveThirdParty allow +" syn keyword ngxDirectiveThirdParty deny +" syn keyword ngxDirectiveThirdParty so_keepalive +" syn keyword ngxDirectiveThirdParty tcp_nodelay +" syn keyword ngxDirectiveThirdParty timeout +" syn keyword ngxDirectiveThirdParty server_name +" syn keyword ngxDirectiveThirdParty resolver +" syn keyword ngxDirectiveThirdParty resolver_timeout +" syn keyword ngxDirectiveThirdParty upstream syn keyword ngxDirectiveThirdParty check syn keyword ngxDirectiveThirdParty check_http_send syn keyword ngxDirectiveThirdParty check_http_expect_alive @@ -22,11 +21,11 @@ syn keyword ngxDirectiveThirdParty check_smtp_send syn keyword ngxDirectiveThirdParty check_smtp_expect_alive syn keyword ngxDirectiveThirdParty check_shm_size syn keyword ngxDirectiveThirdParty check_status -syn keyword ngxDirectiveThirdParty ip_hash -syn keyword ngxDirectiveThirdParty proxy_pass -syn keyword ngxDirectiveThirdParty proxy_buffer -syn keyword ngxDirectiveThirdParty proxy_connect_timeout -syn keyword ngxDirectiveThirdParty proxy_read_timeout +" syn keyword ngxDirectiveThirdParty ip_hash +" syn keyword ngxDirectiveThirdParty proxy_pass +" syn keyword ngxDirectiveThirdParty proxy_buffer +" syn keyword ngxDirectiveThirdParty proxy_connect_timeout +" syn keyword ngxDirectiveThirdParty proxy_read_timeout syn keyword ngxDirectiveThirdParty proxy_write_timeout |