diff options
Diffstat (limited to 'syntax/modules/secure-download.vim')
-rw-r--r-- | syntax/modules/secure-download.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/syntax/modules/secure-download.vim b/syntax/modules/secure-download.vim new file mode 100644 index 00000000..67622140 --- /dev/null +++ b/syntax/modules/secure-download.vim @@ -0,0 +1,11 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 + +" Secure Download <https://www.nginx.com/resources/wiki/modules/secure_download/> +" Create expiring links. +syn keyword ngxDirectiveThirdParty secure_download +syn keyword ngxDirectiveThirdParty secure_download_fail_location +syn keyword ngxDirectiveThirdParty secure_download_path_mode +syn keyword ngxDirectiveThirdParty secure_download_secret + + +endif |