vim-polyglot/syntax/modules/rtmpt-proxy.vim

14 lines
543 B
VimL
Raw Normal View History

2016-12-20 14:57:20 -05:00
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
" RTMPT Module <https://github.com/kwojtek/nginx-rtmpt-proxy-module>
2017-02-02 15:16:29 -05:00
" Module for nginx to proxy rtmp using http protocol
2016-12-20 14:57:20 -05:00
syn keyword ngxDirectiveThirdParty rtmpt_proxy_target
syn keyword ngxDirectiveThirdParty rtmpt_proxy_rtmp_timeout
syn keyword ngxDirectiveThirdParty rtmpt_proxy_http_timeout
syn keyword ngxDirectiveThirdParty rtmpt_proxy
syn keyword ngxDirectiveThirdParty rtmpt_proxy_stat
syn keyword ngxDirectiveThirdParty rtmpt_proxy_stylesheet
2017-02-02 15:16:29 -05:00
2016-12-20 14:57:20 -05:00
endif