summaryrefslogtreecommitdiffstats
path: root/syntax/modules/selective-cache-purge.vim
blob: d67d97274f068bcd06c03594e3bfad003e36e3d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
  
" Selective Cache Purge Module <https://github.com/wandenberg/nginx-selective-cache-purge-module>
" A module to purge cache by GLOB patterns. The supported patterns are the same as supported by Redis.
syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_unix_socket
syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_host
syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_port
syn keyword ngxDirectiveThirdParty selective_cache_purge_redis_database
syn keyword ngxDirectiveThirdParty selective_cache_purge_query


endif