summaryrefslogtreecommitdiffstats
path: root/syntax/modules/spnego-auth.vim
blob: d247b4f4d04f19a0b7785040eedebcecf0f1578e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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