diff options
Diffstat (limited to 'syntax/modules/limit-upload-rate.vim')
-rw-r--r-- | syntax/modules/limit-upload-rate.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/syntax/modules/limit-upload-rate.vim b/syntax/modules/limit-upload-rate.vim new file mode 100644 index 00000000..51354570 --- /dev/null +++ b/syntax/modules/limit-upload-rate.vim @@ -0,0 +1,9 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 + +" Limit Upload Rate Module <https://github.com/cfsego/limit_upload_rate> +" Limit client-upload rate when they are sending request bodies to you +syn keyword ngxDirectiveThirdParty limit_upload_rate +syn keyword ngxDirectiveThirdParty limit_upload_rate_after + + +endif |