summaryrefslogtreecommitdiffstats
path: root/syntax/modules/spnego-auth.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/modules/spnego-auth.vim')
-rw-r--r--syntax/modules/spnego-auth.vim13
1 files changed, 13 insertions, 0 deletions
diff --git a/syntax/modules/spnego-auth.vim b/syntax/modules/spnego-auth.vim
new file mode 100644
index 00000000..d247b4f4
--- /dev/null
+++ b/syntax/modules/spnego-auth.vim
@@ -0,0 +1,13 @@
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
+
+" HTTP SPNEGO auth Module <https://github.com/stnoonan/spnego-http-auth-nginx-module>
+" This module implements adds SPNEGO support to nginx(http://nginx.org). It currently supports only Kerberos authentication via GSSAPI
+syn keyword ngxDirectiveThirdParty auth_gss
+syn keyword ngxDirectiveThirdParty auth_gss_keytab
+syn keyword ngxDirectiveThirdParty auth_gss_realm
+syn keyword ngxDirectiveThirdParty auth_gss_service_name
+syn keyword ngxDirectiveThirdParty auth_gss_authorized_principal
+syn keyword ngxDirectiveThirdParty auth_gss_allow_basic_fallback
+
+
+endif