nginx.vim 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439
  1. " Vim syntax file
  2. " Language: nginx.conf
  3. if exists("b:current_syntax")
  4. finish
  5. end
  6. " general syntax
  7. if has("patch-7.4.1142")
  8. " except control characters, ";", "{", and "}"
  9. syn iskeyword 33-58,60-122,124,126-255
  10. endif
  11. syn match ngxName '\([^;{} \t\\]\|\\.\)\+'
  12. \ contains=@ngxDirectives
  13. \ nextgroup=@ngxParams skipwhite skipempty
  14. syn match ngxParam '\(\${\|[^;{ \t\\]\|\\.\)\+'
  15. \ contained
  16. \ contains=ngxVariable
  17. \ nextgroup=@ngxParams skipwhite skipempty
  18. syn region ngxString start=+\z(["']\)+ end=+\z1+ skip=+\\\\\|\\\z1+
  19. \ contains=ngxVariableString
  20. \ nextgroup=@ngxParams skipwhite skipempty
  21. syn match ngxParamComment '#.*$'
  22. \ nextgroup=@ngxParams skipwhite skipempty
  23. syn match ngxSemicolon ';' contained
  24. syn region ngxBlock start=+{+ end=+}+ contained
  25. \ contains=@ngxTopLevel
  26. syn match ngxComment '#.*$'
  27. syn match ngxVariable '\$\(\w\+\|{\w\+}\)' contained
  28. syn match ngxVariableString '\$\(\w\+\|{\w\+}\)' contained
  29. syn cluster ngxTopLevel
  30. \ contains=ngxName,ngxString,ngxComment
  31. syn cluster ngxDirectives
  32. \ contains=ngxDirective,ngxDirectiveBlock,ngxDirectiveImportant
  33. \ add=ngxDirectiveControl,ngxDirectiveError,ngxDirectiveDeprecated
  34. \ add=ngxDirectiveThirdParty,ngxDirectiveThirdPartyDeprecated
  35. syn cluster ngxParams
  36. \ contains=ngxParam,ngxString,ngxParamComment,ngxSemicolon,ngxBlock
  37. " boolean parameters
  38. syn keyword ngxBoolean contained on off
  39. \ nextgroup=@ngxParams skipwhite skipempty
  40. syn cluster ngxParams add=ngxBoolean
  41. " listen directive
  42. syn cluster ngxTopLevel add=ngxDirectiveListen
  43. syn keyword ngxDirectiveListen listen
  44. \ nextgroup=@ngxListenParams skipwhite skipempty
  45. syn match ngxListenParam '\(\${\|[^;{ \t\\]\|\\.\)\+'
  46. \ contained
  47. \ nextgroup=@ngxListenParams skipwhite skipempty
  48. syn region ngxListenString start=+\z(["']\)+ end=+\z1+ skip=+\\\\\|\\\z1+
  49. \ contained
  50. \ nextgroup=@ngxListenParams skipwhite skipempty
  51. syn match ngxListenComment '#.*$'
  52. \ contained
  53. \ nextgroup=@ngxListenParams skipwhite skipempty
  54. syn keyword ngxListenOptions contained
  55. \ default_server ssl http2 proxy_protocol
  56. \ setfib fastopen backlog rcvbuf sndbuf accept_filter deferred bind
  57. \ ipv6only reuseport so_keepalive
  58. \ nextgroup=@ngxListenParams skipwhite skipempty
  59. syn keyword ngxListenOptionsDeprecated contained
  60. \ spdy
  61. \ nextgroup=@ngxListenParams skipwhite skipempty
  62. syn cluster ngxListenParams
  63. \ contains=ngxListenParam,ngxListenString,ngxListenComment
  64. \ add=ngxListenOptions,ngxListenOptionsDeprecated
  65. syn keyword ngxDirectiveBlock contained http
  66. syn keyword ngxDirectiveBlock contained stream
  67. syn keyword ngxDirectiveBlock contained mail
  68. syn keyword ngxDirectiveBlock contained events
  69. syn keyword ngxDirectiveBlock contained server
  70. syn keyword ngxDirectiveBlock contained types
  71. syn keyword ngxDirectiveBlock contained location
  72. syn keyword ngxDirectiveBlock contained upstream
  73. syn keyword ngxDirectiveBlock contained charset_map
  74. syn keyword ngxDirectiveBlock contained limit_except
  75. syn keyword ngxDirectiveBlock contained if
  76. syn keyword ngxDirectiveBlock contained geo
  77. syn keyword ngxDirectiveBlock contained map
  78. syn keyword ngxDirectiveBlock contained split_clients
  79. syn keyword ngxDirectiveBlock contained match
  80. syn keyword ngxDirectiveImportant contained include
  81. syn keyword ngxDirectiveImportant contained root
  82. syn keyword ngxDirectiveImportant contained server_name
  83. syn keyword ngxDirectiveImportant contained internal
  84. syn keyword ngxDirectiveImportant contained proxy_pass
  85. syn keyword ngxDirectiveImportant contained memcached_pass
  86. syn keyword ngxDirectiveImportant contained fastcgi_pass
  87. syn keyword ngxDirectiveImportant contained scgi_pass
  88. syn keyword ngxDirectiveImportant contained uwsgi_pass
  89. syn keyword ngxDirectiveImportant contained try_files
  90. syn keyword ngxDirectiveControl contained break
  91. syn keyword ngxDirectiveControl contained return
  92. syn keyword ngxDirectiveControl contained rewrite
  93. syn keyword ngxDirectiveControl contained set
  94. syn keyword ngxDirectiveError contained error_page
  95. syn keyword ngxDirectiveError contained post_action
  96. syn keyword ngxDirectiveDeprecated contained limit_zone
  97. syn keyword ngxDirectiveDeprecated contained proxy_downstream_buffer
  98. syn keyword ngxDirectiveDeprecated contained proxy_upstream_buffer
  99. syn keyword ngxDirectiveDeprecated contained spdy_chunk_size
  100. syn keyword ngxDirectiveDeprecated contained spdy_headers_comp
  101. syn keyword ngxDirectiveDeprecated contained spdy_keepalive_timeout
  102. syn keyword ngxDirectiveDeprecated contained spdy_max_concurrent_streams
  103. syn keyword ngxDirectiveDeprecated contained spdy_pool_size
  104. syn keyword ngxDirectiveDeprecated contained spdy_recv_buffer_size
  105. syn keyword ngxDirectiveDeprecated contained spdy_recv_timeout
  106. syn keyword ngxDirectiveDeprecated contained spdy_streams_index_size
  107. syn keyword ngxDirectiveDeprecated contained ssl
  108. syn keyword ngxDirectiveDeprecated contained upstream_conf
  109. syn keyword ngxDirective contained absolute_redirect
  110. syn keyword ngxDirective contained accept_mutex
  111. syn keyword ngxDirective contained accept_mutex_delay
  112. syn keyword ngxDirective contained acceptex_read
  113. syn keyword ngxDirective contained access_log
  114. syn keyword ngxDirective contained add_after_body
  115. syn keyword ngxDirective contained add_before_body
  116. syn keyword ngxDirective contained add_header
  117. syn keyword ngxDirective contained add_trailer
  118. syn keyword ngxDirective contained addition_types
  119. syn keyword ngxDirective contained aio
  120. syn keyword ngxDirective contained aio_write
  121. syn keyword ngxDirective contained alias
  122. syn keyword ngxDirective contained allow
  123. syn keyword ngxDirective contained ancient_browser
  124. syn keyword ngxDirective contained ancient_browser_value
  125. syn keyword ngxDirective contained api
  126. syn keyword ngxDirective contained auth_basic
  127. syn keyword ngxDirective contained auth_basic_user_file
  128. syn keyword ngxDirective contained auth_delay
  129. syn keyword ngxDirective contained auth_http
  130. syn keyword ngxDirective contained auth_http_header
  131. syn keyword ngxDirective contained auth_http_pass_client_cert
  132. syn keyword ngxDirective contained auth_http_timeout
  133. syn keyword ngxDirective contained auth_jwt
  134. syn keyword ngxDirective contained auth_jwt_claim_set
  135. syn keyword ngxDirective contained auth_jwt_header_set
  136. syn keyword ngxDirective contained auth_jwt_key_file
  137. syn keyword ngxDirective contained auth_jwt_key_request
  138. syn keyword ngxDirective contained auth_jwt_leeway
  139. syn keyword ngxDirective contained auth_request
  140. syn keyword ngxDirective contained auth_request_set
  141. syn keyword ngxDirective contained autoindex
  142. syn keyword ngxDirective contained autoindex_exact_size
  143. syn keyword ngxDirective contained autoindex_format
  144. syn keyword ngxDirective contained autoindex_localtime
  145. syn keyword ngxDirective contained charset
  146. syn keyword ngxDirective contained charset_types
  147. syn keyword ngxDirective contained chunked_transfer_encoding
  148. syn keyword ngxDirective contained client_body_buffer_size
  149. syn keyword ngxDirective contained client_body_in_file_only
  150. syn keyword ngxDirective contained client_body_in_single_buffer
  151. syn keyword ngxDirective contained client_body_temp_path
  152. syn keyword ngxDirective contained client_body_timeout
  153. syn keyword ngxDirective contained client_header_buffer_size
  154. syn keyword ngxDirective contained client_header_timeout
  155. syn keyword ngxDirective contained client_max_body_size
  156. syn keyword ngxDirective contained connection_pool_size
  157. syn keyword ngxDirective contained create_full_put_path
  158. syn keyword ngxDirective contained daemon
  159. syn keyword ngxDirective contained dav_access
  160. syn keyword ngxDirective contained dav_methods
  161. syn keyword ngxDirective contained debug_connection
  162. syn keyword ngxDirective contained debug_points
  163. syn keyword ngxDirective contained default_type
  164. syn keyword ngxDirective contained degradation
  165. syn keyword ngxDirective contained degrade
  166. syn keyword ngxDirective contained deny
  167. syn keyword ngxDirective contained devpoll_changes
  168. syn keyword ngxDirective contained devpoll_events
  169. syn keyword ngxDirective contained directio
  170. syn keyword ngxDirective contained directio_alignment
  171. syn keyword ngxDirective contained disable_symlinks
  172. syn keyword ngxDirective contained empty_gif
  173. syn keyword ngxDirective contained env
  174. syn keyword ngxDirective contained epoll_events
  175. syn keyword ngxDirective contained error_log
  176. syn keyword ngxDirective contained etag
  177. syn keyword ngxDirective contained eventport_events
  178. syn keyword ngxDirective contained expires
  179. syn keyword ngxDirective contained f4f
  180. syn keyword ngxDirective contained f4f_buffer_size
  181. syn keyword ngxDirective contained fastcgi_bind
  182. syn keyword ngxDirective contained fastcgi_buffer_size
  183. syn keyword ngxDirective contained fastcgi_buffering
  184. syn keyword ngxDirective contained fastcgi_buffers
  185. syn keyword ngxDirective contained fastcgi_busy_buffers_size
  186. syn keyword ngxDirective contained fastcgi_cache
  187. syn keyword ngxDirective contained fastcgi_cache_background_update
  188. syn keyword ngxDirective contained fastcgi_cache_bypass
  189. syn keyword ngxDirective contained fastcgi_cache_key
  190. syn keyword ngxDirective contained fastcgi_cache_lock
  191. syn keyword ngxDirective contained fastcgi_cache_lock_age
  192. syn keyword ngxDirective contained fastcgi_cache_lock_timeout
  193. syn keyword ngxDirective contained fastcgi_cache_max_range_offset
  194. syn keyword ngxDirective contained fastcgi_cache_methods
  195. syn keyword ngxDirective contained fastcgi_cache_min_uses
  196. syn keyword ngxDirective contained fastcgi_cache_path
  197. syn keyword ngxDirective contained fastcgi_cache_purge
  198. syn keyword ngxDirective contained fastcgi_cache_revalidate
  199. syn keyword ngxDirective contained fastcgi_cache_use_stale
  200. syn keyword ngxDirective contained fastcgi_cache_valid
  201. syn keyword ngxDirective contained fastcgi_catch_stderr
  202. syn keyword ngxDirective contained fastcgi_connect_timeout
  203. syn keyword ngxDirective contained fastcgi_force_ranges
  204. syn keyword ngxDirective contained fastcgi_hide_header
  205. syn keyword ngxDirective contained fastcgi_ignore_client_abort
  206. syn keyword ngxDirective contained fastcgi_ignore_headers
  207. syn keyword ngxDirective contained fastcgi_index
  208. syn keyword ngxDirective contained fastcgi_intercept_errors
  209. syn keyword ngxDirective contained fastcgi_keep_conn
  210. syn keyword ngxDirective contained fastcgi_limit_rate
  211. syn keyword ngxDirective contained fastcgi_max_temp_file_size
  212. syn keyword ngxDirective contained fastcgi_next_upstream
  213. syn keyword ngxDirective contained fastcgi_next_upstream_timeout
  214. syn keyword ngxDirective contained fastcgi_next_upstream_tries
  215. syn keyword ngxDirective contained fastcgi_no_cache
  216. syn keyword ngxDirective contained fastcgi_param
  217. syn keyword ngxDirective contained fastcgi_pass_header
  218. syn keyword ngxDirective contained fastcgi_pass_request_body
  219. syn keyword ngxDirective contained fastcgi_pass_request_headers
  220. syn keyword ngxDirective contained fastcgi_read_timeout
  221. syn keyword ngxDirective contained fastcgi_request_buffering
  222. syn keyword ngxDirective contained fastcgi_send_lowat
  223. syn keyword ngxDirective contained fastcgi_send_timeout
  224. syn keyword ngxDirective contained fastcgi_socket_keepalive
  225. syn keyword ngxDirective contained fastcgi_split_path_info
  226. syn keyword ngxDirective contained fastcgi_store
  227. syn keyword ngxDirective contained fastcgi_store_access
  228. syn keyword ngxDirective contained fastcgi_temp_file_write_size
  229. syn keyword ngxDirective contained fastcgi_temp_path
  230. syn keyword ngxDirective contained flv
  231. syn keyword ngxDirective contained geoip_city
  232. syn keyword ngxDirective contained geoip_country
  233. syn keyword ngxDirective contained geoip_org
  234. syn keyword ngxDirective contained geoip_proxy
  235. syn keyword ngxDirective contained geoip_proxy_recursive
  236. syn keyword ngxDirective contained google_perftools_profiles
  237. syn keyword ngxDirective contained grpc_bind
  238. syn keyword ngxDirective contained grpc_buffer_size
  239. syn keyword ngxDirective contained grpc_connect_timeout
  240. syn keyword ngxDirective contained grpc_hide_header
  241. syn keyword ngxDirective contained grpc_ignore_headers
  242. syn keyword ngxDirective contained grpc_intercept_errors
  243. syn keyword ngxDirective contained grpc_next_upstream
  244. syn keyword ngxDirective contained grpc_next_upstream_timeout
  245. syn keyword ngxDirective contained grpc_next_upstream_tries
  246. syn keyword ngxDirective contained grpc_pass
  247. syn keyword ngxDirective contained grpc_pass_header
  248. syn keyword ngxDirective contained grpc_read_timeout
  249. syn keyword ngxDirective contained grpc_send_timeout
  250. syn keyword ngxDirective contained grpc_set_header
  251. syn keyword ngxDirective contained grpc_socket_keepalive
  252. syn keyword ngxDirective contained grpc_ssl_certificate
  253. syn keyword ngxDirective contained grpc_ssl_certificate_key
  254. syn keyword ngxDirective contained grpc_ssl_ciphers
  255. syn keyword ngxDirective contained grpc_ssl_conf_command
  256. syn keyword ngxDirective contained grpc_ssl_crl
  257. syn keyword ngxDirective contained grpc_ssl_name
  258. syn keyword ngxDirective contained grpc_ssl_password_file
  259. syn keyword ngxDirective contained grpc_ssl_protocols
  260. syn keyword ngxDirective contained grpc_ssl_server_name
  261. syn keyword ngxDirective contained grpc_ssl_session_reuse
  262. syn keyword ngxDirective contained grpc_ssl_trusted_certificate
  263. syn keyword ngxDirective contained grpc_ssl_verify
  264. syn keyword ngxDirective contained grpc_ssl_verify_depth
  265. syn keyword ngxDirective contained gunzip
  266. syn keyword ngxDirective contained gunzip_buffers
  267. syn keyword ngxDirective contained gzip
  268. syn keyword ngxDirective contained gzip_buffers
  269. syn keyword ngxDirective contained gzip_comp_level
  270. syn keyword ngxDirective contained gzip_disable
  271. syn keyword ngxDirective contained gzip_hash
  272. syn keyword ngxDirective contained gzip_http_version
  273. syn keyword ngxDirective contained gzip_min_length
  274. syn keyword ngxDirective contained gzip_no_buffer
  275. syn keyword ngxDirective contained gzip_proxied
  276. syn keyword ngxDirective contained gzip_static
  277. syn keyword ngxDirective contained gzip_types
  278. syn keyword ngxDirective contained gzip_vary
  279. syn keyword ngxDirective contained gzip_window
  280. syn keyword ngxDirective contained hash
  281. syn keyword ngxDirective contained health_check
  282. syn keyword ngxDirective contained health_check_timeout
  283. syn keyword ngxDirective contained hls
  284. syn keyword ngxDirective contained hls_buffers
  285. syn keyword ngxDirective contained hls_forward_args
  286. syn keyword ngxDirective contained hls_fragment
  287. syn keyword ngxDirective contained hls_mp4_buffer_size
  288. syn keyword ngxDirective contained hls_mp4_max_buffer_size
  289. syn keyword ngxDirective contained http2_body_preread_size
  290. syn keyword ngxDirective contained http2_chunk_size
  291. syn keyword ngxDirective contained http2_idle_timeout
  292. syn keyword ngxDirective contained http2_max_concurrent_pushes
  293. syn keyword ngxDirective contained http2_max_concurrent_streams
  294. syn keyword ngxDirective contained http2_max_field_size
  295. syn keyword ngxDirective contained http2_max_header_size
  296. syn keyword ngxDirective contained http2_max_requests
  297. syn keyword ngxDirective contained http2_pool_size
  298. syn keyword ngxDirective contained http2_push
  299. syn keyword ngxDirective contained http2_push_preload
  300. syn keyword ngxDirective contained http2_recv_buffer_size
  301. syn keyword ngxDirective contained http2_recv_timeout
  302. syn keyword ngxDirective contained http2_streams_index_size
  303. syn keyword ngxDirective contained if_modified_since
  304. syn keyword ngxDirective contained ignore_invalid_headers
  305. syn keyword ngxDirective contained image_filter
  306. syn keyword ngxDirective contained image_filter_buffer
  307. syn keyword ngxDirective contained image_filter_interlace
  308. syn keyword ngxDirective contained image_filter_jpeg_quality
  309. syn keyword ngxDirective contained image_filter_sharpen
  310. syn keyword ngxDirective contained image_filter_transparency
  311. syn keyword ngxDirective contained image_filter_webp_quality
  312. syn keyword ngxDirective contained imap_auth
  313. syn keyword ngxDirective contained imap_capabilities
  314. syn keyword ngxDirective contained imap_client_buffer
  315. syn keyword ngxDirective contained index
  316. syn keyword ngxDirective contained iocp_threads
  317. syn keyword ngxDirective contained ip_hash
  318. syn keyword ngxDirective contained js_access
  319. syn keyword ngxDirective contained js_content
  320. syn keyword ngxDirective contained js_filter
  321. syn keyword ngxDirective contained js_import
  322. syn keyword ngxDirective contained js_include
  323. syn keyword ngxDirective contained js_path
  324. syn keyword ngxDirective contained js_preread
  325. syn keyword ngxDirective contained js_set
  326. syn keyword ngxDirective contained keepalive
  327. syn keyword ngxDirective contained keepalive_disable
  328. syn keyword ngxDirective contained keepalive_requests
  329. syn keyword ngxDirective contained keepalive_timeout
  330. syn keyword ngxDirective contained keyval
  331. syn keyword ngxDirective contained keyval_zone
  332. syn keyword ngxDirective contained kqueue_changes
  333. syn keyword ngxDirective contained kqueue_events
  334. syn keyword ngxDirective contained large_client_header_buffers
  335. syn keyword ngxDirective contained least_conn
  336. syn keyword ngxDirective contained least_time
  337. syn keyword ngxDirective contained limit_conn
  338. syn keyword ngxDirective contained limit_conn_dry_run
  339. syn keyword ngxDirective contained limit_conn_log_level
  340. syn keyword ngxDirective contained limit_conn_status
  341. syn keyword ngxDirective contained limit_conn_zone
  342. syn keyword ngxDirective contained limit_rate
  343. syn keyword ngxDirective contained limit_rate_after
  344. syn keyword ngxDirective contained limit_req
  345. syn keyword ngxDirective contained limit_req_dry_run
  346. syn keyword ngxDirective contained limit_req_log_level
  347. syn keyword ngxDirective contained limit_req_status
  348. syn keyword ngxDirective contained limit_req_zone
  349. syn keyword ngxDirective contained lingering_close
  350. syn keyword ngxDirective contained lingering_time
  351. syn keyword ngxDirective contained lingering_timeout
  352. syn keyword ngxDirective contained load_module
  353. syn keyword ngxDirective contained lock_file
  354. syn keyword ngxDirective contained log_format
  355. syn keyword ngxDirective contained log_not_found
  356. syn keyword ngxDirective contained log_subrequest
  357. syn keyword ngxDirective contained map_hash_bucket_size
  358. syn keyword ngxDirective contained map_hash_max_size
  359. syn keyword ngxDirective contained master_process
  360. syn keyword ngxDirective contained max_ranges
  361. syn keyword ngxDirective contained memcached_bind
  362. syn keyword ngxDirective contained memcached_buffer_size
  363. syn keyword ngxDirective contained memcached_connect_timeout
  364. syn keyword ngxDirective contained memcached_force_ranges
  365. syn keyword ngxDirective contained memcached_gzip_flag
  366. syn keyword ngxDirective contained memcached_next_upstream
  367. syn keyword ngxDirective contained memcached_next_upstream_timeout
  368. syn keyword ngxDirective contained memcached_next_upstream_tries
  369. syn keyword ngxDirective contained memcached_read_timeout
  370. syn keyword ngxDirective contained memcached_send_timeout
  371. syn keyword ngxDirective contained memcached_socket_keepalive
  372. syn keyword ngxDirective contained merge_slashes
  373. syn keyword ngxDirective contained min_delete_depth
  374. syn keyword ngxDirective contained mirror
  375. syn keyword ngxDirective contained mirror_request_body
  376. syn keyword ngxDirective contained modern_browser
  377. syn keyword ngxDirective contained modern_browser_value
  378. syn keyword ngxDirective contained mp4
  379. syn keyword ngxDirective contained mp4_buffer_size
  380. syn keyword ngxDirective contained mp4_limit_rate
  381. syn keyword ngxDirective contained mp4_limit_rate_after
  382. syn keyword ngxDirective contained mp4_max_buffer_size
  383. syn keyword ngxDirective contained msie_padding
  384. syn keyword ngxDirective contained msie_refresh
  385. syn keyword ngxDirective contained multi_accept
  386. syn keyword ngxDirective contained ntlm
  387. syn keyword ngxDirective contained open_file_cache
  388. syn keyword ngxDirective contained open_file_cache_errors
  389. syn keyword ngxDirective contained open_file_cache_events
  390. syn keyword ngxDirective contained open_file_cache_min_uses
  391. syn keyword ngxDirective contained open_file_cache_valid
  392. syn keyword ngxDirective contained open_log_file_cache
  393. syn keyword ngxDirective contained output_buffers
  394. syn keyword ngxDirective contained override_charset
  395. syn keyword ngxDirective contained pcre_jit
  396. syn keyword ngxDirective contained perl
  397. syn keyword ngxDirective contained perl_modules
  398. syn keyword ngxDirective contained perl_require
  399. syn keyword ngxDirective contained perl_set
  400. syn keyword ngxDirective contained pid
  401. syn keyword ngxDirective contained pop3_auth
  402. syn keyword ngxDirective contained pop3_capabilities
  403. syn keyword ngxDirective contained port_in_redirect
  404. syn keyword ngxDirective contained post_acceptex
  405. syn keyword ngxDirective contained postpone_gzipping
  406. syn keyword ngxDirective contained postpone_output
  407. syn keyword ngxDirective contained preread_buffer_size
  408. syn keyword ngxDirective contained preread_timeout
  409. syn keyword ngxDirective contained protocol
  410. syn keyword ngxDirective contained proxy
  411. syn keyword ngxDirective contained proxy_bind
  412. syn keyword ngxDirective contained proxy_buffer
  413. syn keyword ngxDirective contained proxy_buffer_size
  414. syn keyword ngxDirective contained proxy_buffering
  415. syn keyword ngxDirective contained proxy_buffers
  416. syn keyword ngxDirective contained proxy_busy_buffers_size
  417. syn keyword ngxDirective contained proxy_cache
  418. syn keyword ngxDirective contained proxy_cache_background_update
  419. syn keyword ngxDirective contained proxy_cache_bypass
  420. syn keyword ngxDirective contained proxy_cache_convert_head
  421. syn keyword ngxDirective contained proxy_cache_key
  422. syn keyword ngxDirective contained proxy_cache_lock
  423. syn keyword ngxDirective contained proxy_cache_lock_age
  424. syn keyword ngxDirective contained proxy_cache_lock_timeout
  425. syn keyword ngxDirective contained proxy_cache_max_range_offset
  426. syn keyword ngxDirective contained proxy_cache_methods
  427. syn keyword ngxDirective contained proxy_cache_min_uses
  428. syn keyword ngxDirective contained proxy_cache_path
  429. syn keyword ngxDirective contained proxy_cache_purge
  430. syn keyword ngxDirective contained proxy_cache_revalidate
  431. syn keyword ngxDirective contained proxy_cache_use_stale
  432. syn keyword ngxDirective contained proxy_cache_valid
  433. syn keyword ngxDirective contained proxy_connect_timeout
  434. syn keyword ngxDirective contained proxy_cookie_domain
  435. syn keyword ngxDirective contained proxy_cookie_flags
  436. syn keyword ngxDirective contained proxy_cookie_path
  437. syn keyword ngxDirective contained proxy_download_rate
  438. syn keyword ngxDirective contained proxy_force_ranges
  439. syn keyword ngxDirective contained proxy_headers_hash_bucket_size
  440. syn keyword ngxDirective contained proxy_headers_hash_max_size
  441. syn keyword ngxDirective contained proxy_hide_header
  442. syn keyword ngxDirective contained proxy_http_version
  443. syn keyword ngxDirective contained proxy_ignore_client_abort
  444. syn keyword ngxDirective contained proxy_ignore_headers
  445. syn keyword ngxDirective contained proxy_intercept_errors
  446. syn keyword ngxDirective contained proxy_limit_rate
  447. syn keyword ngxDirective contained proxy_max_temp_file_size
  448. syn keyword ngxDirective contained proxy_method
  449. syn keyword ngxDirective contained proxy_next_upstream
  450. syn keyword ngxDirective contained proxy_next_upstream_timeout
  451. syn keyword ngxDirective contained proxy_next_upstream_tries
  452. syn keyword ngxDirective contained proxy_no_cache
  453. syn keyword ngxDirective contained proxy_pass_error_message
  454. syn keyword ngxDirective contained proxy_pass_header
  455. syn keyword ngxDirective contained proxy_pass_request_body
  456. syn keyword ngxDirective contained proxy_pass_request_headers
  457. syn keyword ngxDirective contained proxy_protocol
  458. syn keyword ngxDirective contained proxy_protocol_timeout
  459. syn keyword ngxDirective contained proxy_read_timeout
  460. syn keyword ngxDirective contained proxy_redirect
  461. syn keyword ngxDirective contained proxy_request_buffering
  462. syn keyword ngxDirective contained proxy_requests
  463. syn keyword ngxDirective contained proxy_responses
  464. syn keyword ngxDirective contained proxy_send_lowat
  465. syn keyword ngxDirective contained proxy_send_timeout
  466. syn keyword ngxDirective contained proxy_session_drop
  467. syn keyword ngxDirective contained proxy_set_body
  468. syn keyword ngxDirective contained proxy_set_header
  469. syn keyword ngxDirective contained proxy_smtp_auth
  470. syn keyword ngxDirective contained proxy_socket_keepalive
  471. syn keyword ngxDirective contained proxy_ssl
  472. syn keyword ngxDirective contained proxy_ssl_certificate
  473. syn keyword ngxDirective contained proxy_ssl_certificate_key
  474. syn keyword ngxDirective contained proxy_ssl_ciphers
  475. syn keyword ngxDirective contained proxy_ssl_conf_command
  476. syn keyword ngxDirective contained proxy_ssl_crl
  477. syn keyword ngxDirective contained proxy_ssl_name
  478. syn keyword ngxDirective contained proxy_ssl_password_file
  479. syn keyword ngxDirective contained proxy_ssl_protocols
  480. syn keyword ngxDirective contained proxy_ssl_server_name
  481. syn keyword ngxDirective contained proxy_ssl_session_reuse
  482. syn keyword ngxDirective contained proxy_ssl_trusted_certificate
  483. syn keyword ngxDirective contained proxy_ssl_verify
  484. syn keyword ngxDirective contained proxy_ssl_verify_depth
  485. syn keyword ngxDirective contained proxy_store
  486. syn keyword ngxDirective contained proxy_store_access
  487. syn keyword ngxDirective contained proxy_temp_file_write_size
  488. syn keyword ngxDirective contained proxy_temp_path
  489. syn keyword ngxDirective contained proxy_timeout
  490. syn keyword ngxDirective contained proxy_upload_rate
  491. syn keyword ngxDirective contained queue
  492. syn keyword ngxDirective contained random
  493. syn keyword ngxDirective contained random_index
  494. syn keyword ngxDirective contained read_ahead
  495. syn keyword ngxDirective contained real_ip_header
  496. syn keyword ngxDirective contained real_ip_recursive
  497. syn keyword ngxDirective contained recursive_error_pages
  498. syn keyword ngxDirective contained referer_hash_bucket_size
  499. syn keyword ngxDirective contained referer_hash_max_size
  500. syn keyword ngxDirective contained request_pool_size
  501. syn keyword ngxDirective contained reset_timedout_connection
  502. syn keyword ngxDirective contained resolver
  503. syn keyword ngxDirective contained resolver_timeout
  504. syn keyword ngxDirective contained rewrite_log
  505. syn keyword ngxDirective contained satisfy
  506. syn keyword ngxDirective contained scgi_bind
  507. syn keyword ngxDirective contained scgi_buffer_size
  508. syn keyword ngxDirective contained scgi_buffering
  509. syn keyword ngxDirective contained scgi_buffers
  510. syn keyword ngxDirective contained scgi_busy_buffers_size
  511. syn keyword ngxDirective contained scgi_cache
  512. syn keyword ngxDirective contained scgi_cache_background_update
  513. syn keyword ngxDirective contained scgi_cache_bypass
  514. syn keyword ngxDirective contained scgi_cache_key
  515. syn keyword ngxDirective contained scgi_cache_lock
  516. syn keyword ngxDirective contained scgi_cache_lock_age
  517. syn keyword ngxDirective contained scgi_cache_lock_timeout
  518. syn keyword ngxDirective contained scgi_cache_max_range_offset
  519. syn keyword ngxDirective contained scgi_cache_methods
  520. syn keyword ngxDirective contained scgi_cache_min_uses
  521. syn keyword ngxDirective contained scgi_cache_path
  522. syn keyword ngxDirective contained scgi_cache_purge
  523. syn keyword ngxDirective contained scgi_cache_revalidate
  524. syn keyword ngxDirective contained scgi_cache_use_stale
  525. syn keyword ngxDirective contained scgi_cache_valid
  526. syn keyword ngxDirective contained scgi_connect_timeout
  527. syn keyword ngxDirective contained scgi_force_ranges
  528. syn keyword ngxDirective contained scgi_hide_header
  529. syn keyword ngxDirective contained scgi_ignore_client_abort
  530. syn keyword ngxDirective contained scgi_ignore_headers
  531. syn keyword ngxDirective contained scgi_intercept_errors
  532. syn keyword ngxDirective contained scgi_limit_rate
  533. syn keyword ngxDirective contained scgi_max_temp_file_size
  534. syn keyword ngxDirective contained scgi_next_upstream
  535. syn keyword ngxDirective contained scgi_next_upstream_timeout
  536. syn keyword ngxDirective contained scgi_next_upstream_tries
  537. syn keyword ngxDirective contained scgi_no_cache
  538. syn keyword ngxDirective contained scgi_param
  539. syn keyword ngxDirective contained scgi_pass_header
  540. syn keyword ngxDirective contained scgi_pass_request_body
  541. syn keyword ngxDirective contained scgi_pass_request_headers
  542. syn keyword ngxDirective contained scgi_read_timeout
  543. syn keyword ngxDirective contained scgi_request_buffering
  544. syn keyword ngxDirective contained scgi_send_timeout
  545. syn keyword ngxDirective contained scgi_socket_keepalive
  546. syn keyword ngxDirective contained scgi_store
  547. syn keyword ngxDirective contained scgi_store_access
  548. syn keyword ngxDirective contained scgi_temp_file_write_size
  549. syn keyword ngxDirective contained scgi_temp_path
  550. syn keyword ngxDirective contained secure_link
  551. syn keyword ngxDirective contained secure_link_md5
  552. syn keyword ngxDirective contained secure_link_secret
  553. syn keyword ngxDirective contained send_lowat
  554. syn keyword ngxDirective contained send_timeout
  555. syn keyword ngxDirective contained sendfile
  556. syn keyword ngxDirective contained sendfile_max_chunk
  557. syn keyword ngxDirective contained server_name_in_redirect
  558. syn keyword ngxDirective contained server_names_hash_bucket_size
  559. syn keyword ngxDirective contained server_names_hash_max_size
  560. syn keyword ngxDirective contained server_tokens
  561. syn keyword ngxDirective contained session_log
  562. syn keyword ngxDirective contained session_log_format
  563. syn keyword ngxDirective contained session_log_zone
  564. syn keyword ngxDirective contained set_real_ip_from
  565. syn keyword ngxDirective contained slice
  566. syn keyword ngxDirective contained smtp_auth
  567. syn keyword ngxDirective contained smtp_capabilities
  568. syn keyword ngxDirective contained smtp_client_buffer
  569. syn keyword ngxDirective contained smtp_greeting_delay
  570. syn keyword ngxDirective contained source_charset
  571. syn keyword ngxDirective contained ssi
  572. syn keyword ngxDirective contained ssi_ignore_recycled_buffers
  573. syn keyword ngxDirective contained ssi_last_modified
  574. syn keyword ngxDirective contained ssi_min_file_chunk
  575. syn keyword ngxDirective contained ssi_silent_errors
  576. syn keyword ngxDirective contained ssi_types
  577. syn keyword ngxDirective contained ssi_value_length
  578. syn keyword ngxDirective contained ssl_buffer_size
  579. syn keyword ngxDirective contained ssl_certificate
  580. syn keyword ngxDirective contained ssl_certificate_key
  581. syn keyword ngxDirective contained ssl_ciphers
  582. syn keyword ngxDirective contained ssl_client_certificate
  583. syn keyword ngxDirective contained ssl_conf_command
  584. syn keyword ngxDirective contained ssl_crl
  585. syn keyword ngxDirective contained ssl_dhparam
  586. syn keyword ngxDirective contained ssl_early_data
  587. syn keyword ngxDirective contained ssl_ecdh_curve
  588. syn keyword ngxDirective contained ssl_engine
  589. syn keyword ngxDirective contained ssl_handshake_timeout
  590. syn keyword ngxDirective contained ssl_ocsp
  591. syn keyword ngxDirective contained ssl_ocsp_cache
  592. syn keyword ngxDirective contained ssl_ocsp_responder
  593. syn keyword ngxDirective contained ssl_password_file
  594. syn keyword ngxDirective contained ssl_prefer_server_ciphers
  595. syn keyword ngxDirective contained ssl_preread
  596. syn keyword ngxDirective contained ssl_protocols
  597. syn keyword ngxDirective contained ssl_reject_handshake
  598. syn keyword ngxDirective contained ssl_session_cache
  599. syn keyword ngxDirective contained ssl_session_ticket_key
  600. syn keyword ngxDirective contained ssl_session_tickets
  601. syn keyword ngxDirective contained ssl_session_timeout
  602. syn keyword ngxDirective contained ssl_stapling
  603. syn keyword ngxDirective contained ssl_stapling_file
  604. syn keyword ngxDirective contained ssl_stapling_responder
  605. syn keyword ngxDirective contained ssl_stapling_verify
  606. syn keyword ngxDirective contained ssl_trusted_certificate
  607. syn keyword ngxDirective contained ssl_verify_client
  608. syn keyword ngxDirective contained ssl_verify_depth
  609. syn keyword ngxDirective contained starttls
  610. syn keyword ngxDirective contained state
  611. syn keyword ngxDirective contained status
  612. syn keyword ngxDirective contained status_format
  613. syn keyword ngxDirective contained status_zone
  614. syn keyword ngxDirective contained sticky
  615. syn keyword ngxDirective contained sticky_cookie_insert
  616. syn keyword ngxDirective contained stub_status
  617. syn keyword ngxDirective contained sub_filter
  618. syn keyword ngxDirective contained sub_filter_last_modified
  619. syn keyword ngxDirective contained sub_filter_once
  620. syn keyword ngxDirective contained sub_filter_types
  621. syn keyword ngxDirective contained subrequest_output_buffer_size
  622. syn keyword ngxDirective contained tcp_nodelay
  623. syn keyword ngxDirective contained tcp_nopush
  624. syn keyword ngxDirective contained thread_pool
  625. syn keyword ngxDirective contained timeout
  626. syn keyword ngxDirective contained timer_resolution
  627. syn keyword ngxDirective contained types_hash_bucket_size
  628. syn keyword ngxDirective contained types_hash_max_size
  629. syn keyword ngxDirective contained underscores_in_headers
  630. syn keyword ngxDirective contained uninitialized_variable_warn
  631. syn keyword ngxDirective contained use
  632. syn keyword ngxDirective contained user
  633. syn keyword ngxDirective contained userid
  634. syn keyword ngxDirective contained userid_domain
  635. syn keyword ngxDirective contained userid_expires
  636. syn keyword ngxDirective contained userid_flags
  637. syn keyword ngxDirective contained userid_mark
  638. syn keyword ngxDirective contained userid_name
  639. syn keyword ngxDirective contained userid_p3p
  640. syn keyword ngxDirective contained userid_path
  641. syn keyword ngxDirective contained userid_service
  642. syn keyword ngxDirective contained uwsgi_bind
  643. syn keyword ngxDirective contained uwsgi_buffer_size
  644. syn keyword ngxDirective contained uwsgi_buffering
  645. syn keyword ngxDirective contained uwsgi_buffers
  646. syn keyword ngxDirective contained uwsgi_busy_buffers_size
  647. syn keyword ngxDirective contained uwsgi_cache
  648. syn keyword ngxDirective contained uwsgi_cache_background_update
  649. syn keyword ngxDirective contained uwsgi_cache_bypass
  650. syn keyword ngxDirective contained uwsgi_cache_key
  651. syn keyword ngxDirective contained uwsgi_cache_lock
  652. syn keyword ngxDirective contained uwsgi_cache_lock_age
  653. syn keyword ngxDirective contained uwsgi_cache_lock_timeout
  654. syn keyword ngxDirective contained uwsgi_cache_max_range_offset
  655. syn keyword ngxDirective contained uwsgi_cache_methods
  656. syn keyword ngxDirective contained uwsgi_cache_min_uses
  657. syn keyword ngxDirective contained uwsgi_cache_path
  658. syn keyword ngxDirective contained uwsgi_cache_purge
  659. syn keyword ngxDirective contained uwsgi_cache_revalidate
  660. syn keyword ngxDirective contained uwsgi_cache_use_stale
  661. syn keyword ngxDirective contained uwsgi_cache_valid
  662. syn keyword ngxDirective contained uwsgi_connect_timeout
  663. syn keyword ngxDirective contained uwsgi_force_ranges
  664. syn keyword ngxDirective contained uwsgi_hide_header
  665. syn keyword ngxDirective contained uwsgi_ignore_client_abort
  666. syn keyword ngxDirective contained uwsgi_ignore_headers
  667. syn keyword ngxDirective contained uwsgi_intercept_errors
  668. syn keyword ngxDirective contained uwsgi_limit_rate
  669. syn keyword ngxDirective contained uwsgi_max_temp_file_size
  670. syn keyword ngxDirective contained uwsgi_modifier1
  671. syn keyword ngxDirective contained uwsgi_modifier2
  672. syn keyword ngxDirective contained uwsgi_next_upstream
  673. syn keyword ngxDirective contained uwsgi_next_upstream_timeout
  674. syn keyword ngxDirective contained uwsgi_next_upstream_tries
  675. syn keyword ngxDirective contained uwsgi_no_cache
  676. syn keyword ngxDirective contained uwsgi_param
  677. syn keyword ngxDirective contained uwsgi_pass_header
  678. syn keyword ngxDirective contained uwsgi_pass_request_body
  679. syn keyword ngxDirective contained uwsgi_pass_request_headers
  680. syn keyword ngxDirective contained uwsgi_read_timeout
  681. syn keyword ngxDirective contained uwsgi_request_buffering
  682. syn keyword ngxDirective contained uwsgi_send_timeout
  683. syn keyword ngxDirective contained uwsgi_socket_keepalive
  684. syn keyword ngxDirective contained uwsgi_ssl_certificate
  685. syn keyword ngxDirective contained uwsgi_ssl_certificate_key
  686. syn keyword ngxDirective contained uwsgi_ssl_ciphers
  687. syn keyword ngxDirective contained uwsgi_ssl_conf_command
  688. syn keyword ngxDirective contained uwsgi_ssl_crl
  689. syn keyword ngxDirective contained uwsgi_ssl_name
  690. syn keyword ngxDirective contained uwsgi_ssl_password_file
  691. syn keyword ngxDirective contained uwsgi_ssl_protocols
  692. syn keyword ngxDirective contained uwsgi_ssl_server_name
  693. syn keyword ngxDirective contained uwsgi_ssl_session_reuse
  694. syn keyword ngxDirective contained uwsgi_ssl_trusted_certificate
  695. syn keyword ngxDirective contained uwsgi_ssl_verify
  696. syn keyword ngxDirective contained uwsgi_ssl_verify_depth
  697. syn keyword ngxDirective contained uwsgi_store
  698. syn keyword ngxDirective contained uwsgi_store_access
  699. syn keyword ngxDirective contained uwsgi_string
  700. syn keyword ngxDirective contained uwsgi_temp_file_write_size
  701. syn keyword ngxDirective contained uwsgi_temp_path
  702. syn keyword ngxDirective contained valid_referers
  703. syn keyword ngxDirective contained variables_hash_bucket_size
  704. syn keyword ngxDirective contained variables_hash_max_size
  705. syn keyword ngxDirective contained worker_aio_requests
  706. syn keyword ngxDirective contained worker_connections
  707. syn keyword ngxDirective contained worker_cpu_affinity
  708. syn keyword ngxDirective contained worker_priority
  709. syn keyword ngxDirective contained worker_processes
  710. syn keyword ngxDirective contained worker_rlimit_core
  711. syn keyword ngxDirective contained worker_rlimit_nofile
  712. syn keyword ngxDirective contained worker_shutdown_timeout
  713. syn keyword ngxDirective contained working_directory
  714. syn keyword ngxDirective contained xclient
  715. syn keyword ngxDirective contained xml_entities
  716. syn keyword ngxDirective contained xslt_last_modified
  717. syn keyword ngxDirective contained xslt_param
  718. syn keyword ngxDirective contained xslt_string_param
  719. syn keyword ngxDirective contained xslt_stylesheet
  720. syn keyword ngxDirective contained xslt_types
  721. syn keyword ngxDirective contained zone
  722. syn keyword ngxDirective contained zone_sync
  723. syn keyword ngxDirective contained zone_sync_buffers
  724. syn keyword ngxDirective contained zone_sync_connect_retry_interval
  725. syn keyword ngxDirective contained zone_sync_connect_timeout
  726. syn keyword ngxDirective contained zone_sync_interval
  727. syn keyword ngxDirective contained zone_sync_recv_buffer_size
  728. syn keyword ngxDirective contained zone_sync_server
  729. syn keyword ngxDirective contained zone_sync_ssl
  730. syn keyword ngxDirective contained zone_sync_ssl_certificate
  731. syn keyword ngxDirective contained zone_sync_ssl_certificate_key
  732. syn keyword ngxDirective contained zone_sync_ssl_ciphers
  733. syn keyword ngxDirective contained zone_sync_ssl_conf_command
  734. syn keyword ngxDirective contained zone_sync_ssl_crl
  735. syn keyword ngxDirective contained zone_sync_ssl_name
  736. syn keyword ngxDirective contained zone_sync_ssl_password_file
  737. syn keyword ngxDirective contained zone_sync_ssl_protocols
  738. syn keyword ngxDirective contained zone_sync_ssl_server_name
  739. syn keyword ngxDirective contained zone_sync_ssl_trusted_certificate
  740. syn keyword ngxDirective contained zone_sync_ssl_verify
  741. syn keyword ngxDirective contained zone_sync_ssl_verify_depth
  742. syn keyword ngxDirective contained zone_sync_timeout
  743. " 3rd party modules list taken from
  744. " https://github.com/freebsd/freebsd-ports/blob/master/www/nginx-devel/Makefile
  745. " -----------------------------------------------------------------------------
  746. " Accept Language
  747. " https://github.com/giom/nginx_accept_language_module
  748. syn keyword ngxDirectiveThirdParty contained set_from_accept_language
  749. " Digest Authentication
  750. " https://github.com/atomx/nginx-http-auth-digest
  751. syn keyword ngxDirectiveThirdParty contained auth_digest
  752. syn keyword ngxDirectiveThirdParty contained auth_digest_drop_time
  753. syn keyword ngxDirectiveThirdParty contained auth_digest_evasion_time
  754. syn keyword ngxDirectiveThirdParty contained auth_digest_expires
  755. syn keyword ngxDirectiveThirdParty contained auth_digest_maxtries
  756. syn keyword ngxDirectiveThirdParty contained auth_digest_replays
  757. syn keyword ngxDirectiveThirdParty contained auth_digest_shm_size
  758. syn keyword ngxDirectiveThirdParty contained auth_digest_timeout
  759. syn keyword ngxDirectiveThirdParty contained auth_digest_user_file
  760. " SPNEGO Authentication
  761. " https://github.com/stnoonan/spnego-http-auth-nginx-module
  762. syn keyword ngxDirectiveThirdParty contained auth_gss
  763. syn keyword ngxDirectiveThirdParty contained auth_gss_allow_basic_fallback
  764. syn keyword ngxDirectiveThirdParty contained auth_gss_authorized_principal
  765. syn keyword ngxDirectiveThirdParty contained auth_gss_force_realm
  766. syn keyword ngxDirectiveThirdParty contained auth_gss_format_full
  767. syn keyword ngxDirectiveThirdParty contained auth_gss_keytab
  768. syn keyword ngxDirectiveThirdParty contained auth_gss_map_to_local
  769. syn keyword ngxDirectiveThirdParty contained auth_gss_realm
  770. syn keyword ngxDirectiveThirdParty contained auth_gss_service_name
  771. " LDAP Authentication
  772. " https://github.com/kvspb/nginx-auth-ldap
  773. syn keyword ngxDirectiveThirdParty contained auth_ldap
  774. syn keyword ngxDirectiveThirdParty contained auth_ldap_cache_enabled
  775. syn keyword ngxDirectiveThirdParty contained auth_ldap_cache_expiration_time
  776. syn keyword ngxDirectiveThirdParty contained auth_ldap_cache_size
  777. syn keyword ngxDirectiveThirdParty contained auth_ldap_servers
  778. syn keyword ngxDirectiveThirdParty contained auth_ldap_servers_size
  779. syn keyword ngxDirectiveThirdParty contained ldap_server
  780. " PAM Authentication
  781. " https://github.com/sto/ngx_http_auth_pam_module
  782. syn keyword ngxDirectiveThirdParty contained auth_pam
  783. syn keyword ngxDirectiveThirdParty contained auth_pam_service_name
  784. syn keyword ngxDirectiveThirdParty contained auth_pam_set_pam_env
  785. " AJP protocol proxy
  786. " https://github.com/yaoweibin/nginx_ajp_module
  787. syn keyword ngxDirectiveThirdParty contained ajp_buffers
  788. syn keyword ngxDirectiveThirdParty contained ajp_buffer_size
  789. syn keyword ngxDirectiveThirdParty contained ajp_busy_buffers_size
  790. syn keyword ngxDirectiveThirdParty contained ajp_cache
  791. syn keyword ngxDirectiveThirdParty contained ajp_cache_key
  792. syn keyword ngxDirectiveThirdParty contained ajp_cache_lock
  793. syn keyword ngxDirectiveThirdParty contained ajp_cache_lock_timeout
  794. syn keyword ngxDirectiveThirdParty contained ajp_cache_methods
  795. syn keyword ngxDirectiveThirdParty contained ajp_cache_min_uses
  796. syn keyword ngxDirectiveThirdParty contained ajp_cache_path
  797. syn keyword ngxDirectiveThirdParty contained ajp_cache_use_stale
  798. syn keyword ngxDirectiveThirdParty contained ajp_cache_valid
  799. syn keyword ngxDirectiveThirdParty contained ajp_connect_timeout
  800. syn keyword ngxDirectiveThirdParty contained ajp_header_packet_buffer_size
  801. syn keyword ngxDirectiveThirdParty contained ajp_hide_header
  802. syn keyword ngxDirectiveThirdParty contained ajp_ignore_client_abort
  803. syn keyword ngxDirectiveThirdParty contained ajp_ignore_headers
  804. syn keyword ngxDirectiveThirdParty contained ajp_intercept_errors
  805. syn keyword ngxDirectiveThirdParty contained ajp_keep_conn
  806. syn keyword ngxDirectiveThirdParty contained ajp_max_data_packet_size
  807. syn keyword ngxDirectiveThirdParty contained ajp_max_temp_file_size
  808. syn keyword ngxDirectiveThirdParty contained ajp_next_upstream
  809. syn keyword ngxDirectiveThirdParty contained ajp_pass
  810. syn keyword ngxDirectiveThirdParty contained ajp_pass_header
  811. syn keyword ngxDirectiveThirdParty contained ajp_pass_request_body
  812. syn keyword ngxDirectiveThirdParty contained ajp_pass_request_headers
  813. syn keyword ngxDirectiveThirdParty contained ajp_read_timeout
  814. syn keyword ngxDirectiveThirdParty contained ajp_secret
  815. syn keyword ngxDirectiveThirdParty contained ajp_send_lowat
  816. syn keyword ngxDirectiveThirdParty contained ajp_send_timeout
  817. syn keyword ngxDirectiveThirdParty contained ajp_store
  818. syn keyword ngxDirectiveThirdParty contained ajp_store_access
  819. syn keyword ngxDirectiveThirdParty contained ajp_temp_file_write_size
  820. syn keyword ngxDirectiveThirdParty contained ajp_temp_path
  821. syn keyword ngxDirectiveThirdParty contained ajp_upstream_fail_timeout
  822. syn keyword ngxDirectiveThirdParty contained ajp_upstream_max_fails
  823. " AWS proxy
  824. " https://github.com/anomalizer/ngx_aws_auth
  825. syn keyword ngxDirectiveThirdParty contained aws_access_key
  826. syn keyword ngxDirectiveThirdParty contained aws_endpoint
  827. syn keyword ngxDirectiveThirdParty contained aws_key_scope
  828. syn keyword ngxDirectiveThirdParty contained aws_s3_bucket
  829. syn keyword ngxDirectiveThirdParty contained aws_sign
  830. syn keyword ngxDirectiveThirdParty contained aws_signing_key
  831. " embedding Clojure or Java or Groovy programs
  832. " https://github.com/nginx-clojure/nginx-clojure
  833. syn keyword ngxDirectiveThirdParty contained access_handler_code
  834. syn keyword ngxDirectiveThirdParty contained access_handler_name
  835. syn keyword ngxDirectiveThirdParty contained access_handler_property
  836. syn keyword ngxDirectiveThirdParty contained access_handler_type
  837. syn keyword ngxDirectiveThirdParty contained always_read_body
  838. syn keyword ngxDirectiveThirdParty contained auto_upgrade_ws
  839. syn keyword ngxDirectiveThirdParty contained body_filter_code
  840. syn keyword ngxDirectiveThirdParty contained body_filter_name
  841. syn keyword ngxDirectiveThirdParty contained body_filter_property
  842. syn keyword ngxDirectiveThirdParty contained body_filter_type
  843. syn keyword ngxDirectiveThirdParty contained content_handler_code
  844. syn keyword ngxDirectiveThirdParty contained content_handler_name
  845. syn keyword ngxDirectiveThirdParty contained content_handler_property
  846. syn keyword ngxDirectiveThirdParty contained content_handler_type
  847. syn keyword ngxDirectiveThirdParty contained handler_code
  848. syn keyword ngxDirectiveThirdParty contained handler_name
  849. syn keyword ngxDirectiveThirdParty contained handlers_lazy_init
  850. syn keyword ngxDirectiveThirdParty contained handler_type
  851. syn keyword ngxDirectiveThirdParty contained header_filter_code
  852. syn keyword ngxDirectiveThirdParty contained header_filter_name
  853. syn keyword ngxDirectiveThirdParty contained header_filter_property
  854. syn keyword ngxDirectiveThirdParty contained header_filter_type
  855. syn keyword ngxDirectiveThirdParty contained jvm_classpath
  856. syn keyword ngxDirectiveThirdParty contained jvm_classpath_check
  857. syn keyword ngxDirectiveThirdParty contained jvm_exit_handler_code
  858. syn keyword ngxDirectiveThirdParty contained jvm_exit_handler_name
  859. syn keyword ngxDirectiveThirdParty contained jvm_handler_type
  860. syn keyword ngxDirectiveThirdParty contained jvm_init_handler_code
  861. syn keyword ngxDirectiveThirdParty contained jvm_init_handler_name
  862. syn keyword ngxDirectiveThirdParty contained jvm_options
  863. syn keyword ngxDirectiveThirdParty contained jvm_path
  864. syn keyword ngxDirectiveThirdParty contained jvm_var
  865. syn keyword ngxDirectiveThirdParty contained jvm_workers
  866. syn keyword ngxDirectiveThirdParty contained log_handler_code
  867. syn keyword ngxDirectiveThirdParty contained log_handler_name
  868. syn keyword ngxDirectiveThirdParty contained log_handler_property
  869. syn keyword ngxDirectiveThirdParty contained log_handler_type
  870. syn keyword ngxDirectiveThirdParty contained max_balanced_tcp_connections
  871. syn keyword ngxDirectiveThirdParty contained rewrite_handler_code
  872. syn keyword ngxDirectiveThirdParty contained rewrite_handler_name
  873. syn keyword ngxDirectiveThirdParty contained rewrite_handler_property
  874. syn keyword ngxDirectiveThirdParty contained rewrite_handler_type
  875. syn keyword ngxDirectiveThirdParty contained shared_map
  876. syn keyword ngxDirectiveThirdParty contained write_page_size
  877. " Certificate Transparency
  878. " https://github.com/grahamedgecombe/nginx-ct
  879. syn keyword ngxDirectiveThirdParty contained ssl_ct
  880. syn keyword ngxDirectiveThirdParty contained ssl_ct_static_scts
  881. " ngx_echo
  882. " https://github.com/openresty/echo-nginx-module
  883. syn keyword ngxDirectiveThirdParty contained echo_abort_parent
  884. syn keyword ngxDirectiveThirdParty contained echo_after_body
  885. syn keyword ngxDirectiveThirdParty contained echo_before_body
  886. syn keyword ngxDirectiveThirdParty contained echo_blocking_sleep
  887. syn keyword ngxDirectiveThirdParty contained echo_end
  888. syn keyword ngxDirectiveThirdParty contained echo_exec
  889. syn keyword ngxDirectiveThirdParty contained echo_flush
  890. syn keyword ngxDirectiveThirdParty contained echo_foreach_split
  891. syn keyword ngxDirectiveThirdParty contained echo_location
  892. syn keyword ngxDirectiveThirdParty contained echo_location_async
  893. syn keyword ngxDirectiveThirdParty contained echo_read_request_body
  894. syn keyword ngxDirectiveThirdParty contained echo_request_body
  895. syn keyword ngxDirectiveThirdParty contained echo_reset_timer
  896. syn keyword ngxDirectiveThirdParty contained echo_status
  897. syn keyword ngxDirectiveThirdParty contained echo_subrequest
  898. syn keyword ngxDirectiveThirdParty contained echo_subrequest_async
  899. " FastDFS
  900. " https://github.com/happyfish100/fastdfs-nginx-module
  901. syn keyword ngxDirectiveThirdParty contained ngx_fastdfs_module
  902. " ngx_headers_more
  903. " https://github.com/openresty/headers-more-nginx-module
  904. syn keyword ngxDirectiveThirdParty contained more_clear_headers
  905. syn keyword ngxDirectiveThirdParty contained more_clear_input_headers
  906. syn keyword ngxDirectiveThirdParty contained more_set_headers
  907. syn keyword ngxDirectiveThirdParty contained more_set_input_headers
  908. " NGINX WebDAV missing commands support (PROPFIND & OPTIONS)
  909. " https://github.com/arut/nginx-dav-ext-module
  910. syn keyword ngxDirectiveThirdParty contained dav_ext_lock
  911. syn keyword ngxDirectiveThirdParty contained dav_ext_lock_zone
  912. syn keyword ngxDirectiveThirdParty contained dav_ext_methods
  913. " ngx_eval
  914. " https://github.com/openresty/nginx-eval-module
  915. syn keyword ngxDirectiveThirdParty contained eval
  916. syn keyword ngxDirectiveThirdParty contained eval_buffer_size
  917. syn keyword ngxDirectiveThirdParty contained eval_escalate
  918. syn keyword ngxDirectiveThirdParty contained eval_override_content_type
  919. syn keyword ngxDirectiveThirdParty contained eval_subrequest_in_memory
  920. " Fancy Index
  921. " https://github.com/aperezdc/ngx-fancyindex
  922. syn keyword ngxDirectiveThirdParty contained fancyindex
  923. syn keyword ngxDirectiveThirdParty contained fancyindex_css_href
  924. syn keyword ngxDirectiveThirdParty contained fancyindex_default_sort
  925. syn keyword ngxDirectiveThirdParty contained fancyindex_directories_first
  926. syn keyword ngxDirectiveThirdParty contained fancyindex_exact_size
  927. syn keyword ngxDirectiveThirdParty contained fancyindex_footer
  928. syn keyword ngxDirectiveThirdParty contained fancyindex_header
  929. syn keyword ngxDirectiveThirdParty contained fancyindex_hide_parent_dir
  930. syn keyword ngxDirectiveThirdParty contained fancyindex_hide_symlinks
  931. syn keyword ngxDirectiveThirdParty contained fancyindex_ignore
  932. syn keyword ngxDirectiveThirdParty contained fancyindex_localtime
  933. syn keyword ngxDirectiveThirdParty contained fancyindex_name_length
  934. syn keyword ngxDirectiveThirdParty contained fancyindex_show_dotfiles
  935. syn keyword ngxDirectiveThirdParty contained fancyindex_show_path
  936. syn keyword ngxDirectiveThirdParty contained fancyindex_time_format
  937. " Footer filter
  938. " https://github.com/alibaba/nginx-http-footer-filter
  939. syn keyword ngxDirectiveThirdParty contained footer
  940. syn keyword ngxDirectiveThirdParty contained footer_types
  941. " ngx_http_geoip2_module
  942. " https://github.com/leev/ngx_http_geoip2_module
  943. syn keyword ngxDirectiveThirdParty contained geoip2
  944. syn keyword ngxDirectiveThirdParty contained geoip2_proxy
  945. syn keyword ngxDirectiveThirdParty contained geoip2_proxy_recursive
  946. " A version of the Nginx HTTP stub status module that outputs in JSON format
  947. " https://github.com/nginx-modules/nginx-json-status-module
  948. syn keyword ngxDirectiveThirdParty contained json_status
  949. syn keyword ngxDirectiveThirdParty contained json_status_type
  950. " MogileFS client for nginx
  951. " https://github.com/vkholodkov/nginx-mogilefs-module
  952. syn keyword ngxDirectiveThirdParty contained mogilefs_class
  953. syn keyword ngxDirectiveThirdParty contained mogilefs_connect_timeout
  954. syn keyword ngxDirectiveThirdParty contained mogilefs_domain
  955. syn keyword ngxDirectiveThirdParty contained mogilefs_methods
  956. syn keyword ngxDirectiveThirdParty contained mogilefs_noverify
  957. syn keyword ngxDirectiveThirdParty contained mogilefs_pass
  958. syn keyword ngxDirectiveThirdParty contained mogilefs_read_timeout
  959. syn keyword ngxDirectiveThirdParty contained mogilefs_send_timeout
  960. syn keyword ngxDirectiveThirdParty contained mogilefs_tracker
  961. " Ancient nginx plugin; probably not useful to anyone
  962. " https://github.com/kr/nginx-notice
  963. syn keyword ngxDirectiveThirdParty contained notice
  964. syn keyword ngxDirectiveThirdParty contained notice_type
  965. " nchan
  966. " https://github.com/slact/nchan
  967. syn keyword ngxDirectiveThirdParty contained nchan_access_control_allow_credentials
  968. syn keyword ngxDirectiveThirdParty contained nchan_access_control_allow_origin
  969. syn keyword ngxDirectiveThirdParty contained nchan_authorize_request
  970. syn keyword ngxDirectiveThirdParty contained nchan_benchmark
  971. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_channels
  972. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_message_padding_bytes
  973. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_messages_per_channel_per_minute
  974. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_publisher_distribution
  975. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_subscriber_distribution
  976. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_subscribers_per_channel
  977. syn keyword ngxDirectiveThirdParty contained nchan_benchmark_time
  978. syn keyword ngxDirectiveThirdParty contained nchan_channel_events_channel_id
  979. syn keyword ngxDirectiveThirdParty contained nchan_channel_event_string
  980. syn keyword ngxDirectiveThirdParty contained nchan_channel_group
  981. syn keyword ngxDirectiveThirdParty contained nchan_channel_group_accounting
  982. syn keyword ngxDirectiveThirdParty contained nchan_channel_id
  983. syn keyword ngxDirectiveThirdParty contained nchan_channel_id_split_delimiter
  984. syn keyword ngxDirectiveThirdParty contained nchan_channel_timeout
  985. syn keyword ngxDirectiveThirdParty contained nchan_deflate_message_for_websocket
  986. syn keyword ngxDirectiveThirdParty contained nchan_eventsource_event
  987. syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_comment
  988. syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_data
  989. syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_event
  990. syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_interval
  991. syn keyword ngxDirectiveThirdParty contained nchan_group_location
  992. syn keyword ngxDirectiveThirdParty contained nchan_group_max_channels
  993. syn keyword ngxDirectiveThirdParty contained nchan_group_max_messages
  994. syn keyword ngxDirectiveThirdParty contained nchan_group_max_messages_disk
  995. syn keyword ngxDirectiveThirdParty contained nchan_group_max_messages_memory
  996. syn keyword ngxDirectiveThirdParty contained nchan_group_max_subscribers
  997. syn keyword ngxDirectiveThirdParty contained nchan_longpoll_multipart_response
  998. syn keyword ngxDirectiveThirdParty contained nchan_max_channel_id_length
  999. syn keyword ngxDirectiveThirdParty contained nchan_max_channel_subscribers
  1000. syn keyword ngxDirectiveThirdParty contained nchan_max_reserved_memory
  1001. syn keyword ngxDirectiveThirdParty contained nchan_message_buffer_length
  1002. syn keyword ngxDirectiveThirdParty contained nchan_message_max_buffer_length
  1003. syn keyword ngxDirectiveThirdParty contained nchan_message_temp_path
  1004. syn keyword ngxDirectiveThirdParty contained nchan_message_timeout
  1005. syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_level
  1006. syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_memlevel
  1007. syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_strategy
  1008. syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_window
  1009. syn keyword ngxDirectiveThirdParty contained nchan_pub_channel_id
  1010. syn keyword ngxDirectiveThirdParty contained nchan_publisher
  1011. syn keyword ngxDirectiveThirdParty contained nchan_publisher_channel_id
  1012. syn keyword ngxDirectiveThirdParty contained nchan_publisher_location
  1013. syn keyword ngxDirectiveThirdParty contained nchan_publisher_upstream_request
  1014. syn keyword ngxDirectiveThirdParty contained nchan_pubsub
  1015. syn keyword ngxDirectiveThirdParty contained nchan_pubsub_channel_id
  1016. syn keyword ngxDirectiveThirdParty contained nchan_pubsub_location
  1017. syn keyword ngxDirectiveThirdParty contained nchan_redis_connect_timeout
  1018. syn keyword ngxDirectiveThirdParty contained nchan_redis_fakesub_timer_interval
  1019. syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_cache_timeout
  1020. syn keyword ngxDirectiveThirdParty contained nchan_redis_namespace
  1021. syn keyword ngxDirectiveThirdParty contained nchan_redis_nostore_fastpublish
  1022. syn keyword ngxDirectiveThirdParty contained nchan_redis_optimize_target
  1023. syn keyword ngxDirectiveThirdParty contained nchan_redis_pass
  1024. syn keyword ngxDirectiveThirdParty contained nchan_redis_pass_inheritable
  1025. syn keyword ngxDirectiveThirdParty contained nchan_redis_ping_interval
  1026. syn keyword ngxDirectiveThirdParty contained nchan_redis_publish_msgpacked_max_size
  1027. syn keyword ngxDirectiveThirdParty contained nchan_redis_server
  1028. syn keyword ngxDirectiveThirdParty contained nchan_redis_storage_mode
  1029. syn keyword ngxDirectiveThirdParty contained nchan_redis_subscribe_weights
  1030. syn keyword ngxDirectiveThirdParty contained nchan_redis_url
  1031. syn keyword ngxDirectiveThirdParty contained nchan_redis_wait_after_connecting
  1032. syn keyword ngxDirectiveThirdParty contained nchan_shared_memory_size
  1033. syn keyword ngxDirectiveThirdParty contained nchan_storage_engine
  1034. syn keyword ngxDirectiveThirdParty contained nchan_store_messages
  1035. syn keyword ngxDirectiveThirdParty contained nchan_stub_status
  1036. syn keyword ngxDirectiveThirdParty contained nchan_sub_channel_id
  1037. syn keyword ngxDirectiveThirdParty contained nchan_subscribe_existing_channels_only
  1038. syn keyword ngxDirectiveThirdParty contained nchan_subscriber
  1039. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_channel_id
  1040. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_compound_etag_message_id
  1041. syn keyword ngxDirectiveThirdParty contained nchan_subscribe_request
  1042. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_first_message
  1043. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_http_raw_stream_separator
  1044. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_last_message_id
  1045. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_location
  1046. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_message_id_custom_etag_header
  1047. syn keyword ngxDirectiveThirdParty contained nchan_subscriber_timeout
  1048. syn keyword ngxDirectiveThirdParty contained nchan_unsubscribe_request
  1049. syn keyword ngxDirectiveThirdParty contained nchan_use_redis
  1050. syn keyword ngxDirectiveThirdParty contained nchan_websocket_client_heartbeat
  1051. syn keyword ngxDirectiveThirdParty contained nchan_websocket_ping_interval
  1052. syn keyword ngxDirectiveThirdParty contained push_authorized_channels_only
  1053. syn keyword ngxDirectiveThirdParty contained push_channel_group
  1054. syn keyword ngxDirectiveThirdParty contained push_channel_timeout
  1055. syn keyword ngxDirectiveThirdParty contained push_max_channel_id_length
  1056. syn keyword ngxDirectiveThirdParty contained push_max_channel_subscribers
  1057. syn keyword ngxDirectiveThirdParty contained push_max_message_buffer_length
  1058. syn keyword ngxDirectiveThirdParty contained push_max_reserved_memory
  1059. syn keyword ngxDirectiveThirdParty contained push_message_buffer_length
  1060. syn keyword ngxDirectiveThirdParty contained push_message_timeout
  1061. syn keyword ngxDirectiveThirdParty contained push_min_message_buffer_length
  1062. syn keyword ngxDirectiveThirdParty contained push_publisher
  1063. syn keyword ngxDirectiveThirdParty contained push_store_messages
  1064. syn keyword ngxDirectiveThirdParty contained push_subscriber
  1065. syn keyword ngxDirectiveThirdParty contained push_subscriber_concurrency
  1066. syn keyword ngxDirectiveThirdParty contained push_subscriber_timeout
  1067. " Push Stream
  1068. " https://github.com/wandenberg/nginx-push-stream-module
  1069. syn keyword ngxDirectiveThirdParty contained push_stream_allow_connections_to_events_channel
  1070. syn keyword ngxDirectiveThirdParty contained push_stream_allowed_origins
  1071. syn keyword ngxDirectiveThirdParty contained push_stream_authorized_channels_only
  1072. syn keyword ngxDirectiveThirdParty contained push_stream_channel_deleted_message_text
  1073. syn keyword ngxDirectiveThirdParty contained push_stream_channel_inactivity_time
  1074. syn keyword ngxDirectiveThirdParty contained push_stream_channel_info_on_publish
  1075. syn keyword ngxDirectiveThirdParty contained push_stream_channels_path
  1076. syn keyword ngxDirectiveThirdParty contained push_stream_channels_statistics
  1077. syn keyword ngxDirectiveThirdParty contained push_stream_events_channel_id
  1078. syn keyword ngxDirectiveThirdParty contained push_stream_footer_template
  1079. syn keyword ngxDirectiveThirdParty contained push_stream_header_template
  1080. syn keyword ngxDirectiveThirdParty contained push_stream_header_template_file
  1081. syn keyword ngxDirectiveThirdParty contained push_stream_last_event_id
  1082. syn keyword ngxDirectiveThirdParty contained push_stream_last_received_message_tag
  1083. syn keyword ngxDirectiveThirdParty contained push_stream_last_received_message_time
  1084. syn keyword ngxDirectiveThirdParty contained push_stream_longpolling_connection_ttl
  1085. syn keyword ngxDirectiveThirdParty contained push_stream_max_channel_id_length
  1086. syn keyword ngxDirectiveThirdParty contained push_stream_max_messages_stored_per_channel
  1087. syn keyword ngxDirectiveThirdParty contained push_stream_max_number_of_channels
  1088. syn keyword ngxDirectiveThirdParty contained push_stream_max_number_of_wildcard_channels
  1089. syn keyword ngxDirectiveThirdParty contained push_stream_max_subscribers_per_channel
  1090. syn keyword ngxDirectiveThirdParty contained push_stream_message_template
  1091. syn keyword ngxDirectiveThirdParty contained push_stream_message_ttl
  1092. syn keyword ngxDirectiveThirdParty contained push_stream_padding_by_user_agent
  1093. syn keyword ngxDirectiveThirdParty contained push_stream_ping_message_interval
  1094. syn keyword ngxDirectiveThirdParty contained push_stream_ping_message_text
  1095. syn keyword ngxDirectiveThirdParty contained push_stream_publisher
  1096. syn keyword ngxDirectiveThirdParty contained push_stream_shared_memory_size
  1097. syn keyword ngxDirectiveThirdParty contained push_stream_store_messages
  1098. syn keyword ngxDirectiveThirdParty contained push_stream_subscriber
  1099. syn keyword ngxDirectiveThirdParty contained push_stream_subscriber_connection_ttl
  1100. syn keyword ngxDirectiveThirdParty contained push_stream_timeout_with_body
  1101. syn keyword ngxDirectiveThirdParty contained push_stream_user_agent
  1102. syn keyword ngxDirectiveThirdParty contained push_stream_websocket_allow_publish
  1103. syn keyword ngxDirectiveThirdParty contained push_stream_wildcard_channel_max_qtd
  1104. syn keyword ngxDirectiveThirdParty contained push_stream_wildcard_channel_prefix
  1105. " redis module
  1106. " https://www.nginx.com/resources/wiki/modules/redis/
  1107. syn keyword ngxDirectiveThirdParty contained redis_bind
  1108. syn keyword ngxDirectiveThirdParty contained redis_buffer_size
  1109. syn keyword ngxDirectiveThirdParty contained redis_connect_timeout
  1110. syn keyword ngxDirectiveThirdParty contained redis_gzip_flag
  1111. syn keyword ngxDirectiveThirdParty contained redis_next_upstream
  1112. syn keyword ngxDirectiveThirdParty contained redis_pass
  1113. syn keyword ngxDirectiveThirdParty contained redis_read_timeout
  1114. syn keyword ngxDirectiveThirdParty contained redis_send_timeout
  1115. " ngx_http_response
  1116. " http://catap.ru/downloads/nginx/
  1117. syn keyword ngxDirectiveThirdParty contained response
  1118. syn keyword ngxDirectiveThirdParty contained response_type
  1119. " nginx_substitutions_filter
  1120. " https://github.com/yaoweibin/ngx_http_substitutions_filter_module
  1121. syn keyword ngxDirectiveThirdParty contained subs_buffers
  1122. syn keyword ngxDirectiveThirdParty contained subs_filter
  1123. syn keyword ngxDirectiveThirdParty contained subs_filter_bypass
  1124. syn keyword ngxDirectiveThirdParty contained subs_filter_types
  1125. syn keyword ngxDirectiveThirdParty contained subs_line_buffer_size
  1126. " Tarantool nginx upstream module
  1127. " https://github.com/tarantool/nginx_upstream_module
  1128. syn keyword ngxDirectiveThirdParty contained tnt_allowed_indexes
  1129. syn keyword ngxDirectiveThirdParty contained tnt_allowed_spaces
  1130. syn keyword ngxDirectiveThirdParty contained tnt_buffer_size
  1131. syn keyword ngxDirectiveThirdParty contained tnt_connect_timeout
  1132. syn keyword ngxDirectiveThirdParty contained tnt_delete
  1133. syn keyword ngxDirectiveThirdParty contained tnt_http_methods
  1134. syn keyword ngxDirectiveThirdParty contained tnt_http_rest_methods
  1135. syn keyword ngxDirectiveThirdParty contained tnt_in_multiplier
  1136. syn keyword ngxDirectiveThirdParty contained tnt_insert
  1137. syn keyword ngxDirectiveThirdParty contained tnt_method
  1138. syn keyword ngxDirectiveThirdParty contained tnt_multireturn_skip_count
  1139. syn keyword ngxDirectiveThirdParty contained tnt_next_upstream
  1140. syn keyword ngxDirectiveThirdParty contained tnt_next_upstream_timeout
  1141. syn keyword ngxDirectiveThirdParty contained tnt_next_upstream_tries
  1142. syn keyword ngxDirectiveThirdParty contained tnt_out_multiplier
  1143. syn keyword ngxDirectiveThirdParty contained tnt_pass
  1144. syn keyword ngxDirectiveThirdParty contained tnt_pass_http_request
  1145. syn keyword ngxDirectiveThirdParty contained tnt_pass_http_request_buffer_size
  1146. syn keyword ngxDirectiveThirdParty contained tnt_pure_result
  1147. syn keyword ngxDirectiveThirdParty contained tnt_read_timeout
  1148. syn keyword ngxDirectiveThirdParty contained tnt_replace
  1149. syn keyword ngxDirectiveThirdParty contained tnt_select
  1150. syn keyword ngxDirectiveThirdParty contained tnt_select_limit_max
  1151. syn keyword ngxDirectiveThirdParty contained tnt_send_timeout
  1152. syn keyword ngxDirectiveThirdParty contained tnt_set_header
  1153. syn keyword ngxDirectiveThirdParty contained tnt_update
  1154. syn keyword ngxDirectiveThirdParty contained tnt_upsert
  1155. " A module for nginx web server for handling file uploads using multipart/form-data encoding (RFC 1867)
  1156. " https://github.com/Austinb/nginx-upload-module
  1157. syn keyword ngxDirectiveThirdParty contained upload_aggregate_form_field
  1158. syn keyword ngxDirectiveThirdParty contained upload_archive_elm
  1159. syn keyword ngxDirectiveThirdParty contained upload_archive_elm_separator
  1160. syn keyword ngxDirectiveThirdParty contained upload_archive_path
  1161. syn keyword ngxDirectiveThirdParty contained upload_archive_path_separator
  1162. syn keyword ngxDirectiveThirdParty contained upload_buffer_size
  1163. syn keyword ngxDirectiveThirdParty contained upload_cleanup
  1164. syn keyword ngxDirectiveThirdParty contained upload_content_type
  1165. syn keyword ngxDirectiveThirdParty contained upload_discard
  1166. syn keyword ngxDirectiveThirdParty contained upload_field_name
  1167. syn keyword ngxDirectiveThirdParty contained upload_file_crc32
  1168. syn keyword ngxDirectiveThirdParty contained upload_file_md5
  1169. syn keyword ngxDirectiveThirdParty contained upload_file_md5_uc
  1170. syn keyword ngxDirectiveThirdParty contained upload_file_name
  1171. syn keyword ngxDirectiveThirdParty contained upload_file_sha1
  1172. syn keyword ngxDirectiveThirdParty contained upload_file_sha1_uc
  1173. syn keyword ngxDirectiveThirdParty contained upload_file_size
  1174. syn keyword ngxDirectiveThirdParty contained upload_filter
  1175. syn keyword ngxDirectiveThirdParty contained upload_max_file_size
  1176. syn keyword ngxDirectiveThirdParty contained upload_max_output_body_len
  1177. syn keyword ngxDirectiveThirdParty contained upload_max_part_header_len
  1178. syn keyword ngxDirectiveThirdParty contained upload_pass
  1179. syn keyword ngxDirectiveThirdParty contained upload_pass_args
  1180. syn keyword ngxDirectiveThirdParty contained upload_pass_form_field
  1181. syn keyword ngxDirectiveThirdParty contained upload_set_form_field
  1182. syn keyword ngxDirectiveThirdParty contained upload_store
  1183. syn keyword ngxDirectiveThirdParty contained upload_store_access
  1184. syn keyword ngxDirectiveThirdParty contained upload_tmp_path
  1185. syn keyword ngxDirectiveThirdParty contained upload_unzip
  1186. syn keyword ngxDirectiveThirdParty contained upload_unzip_buffers
  1187. syn keyword ngxDirectiveThirdParty contained upload_unzip_hash
  1188. syn keyword ngxDirectiveThirdParty contained upload_unzip_max_file_name_len
  1189. syn keyword ngxDirectiveThirdParty contained upload_unzip_window
  1190. syn keyword ngxDirectiveThirdParty contained upload_void_content_type
  1191. " nginx-upload-progress-module
  1192. " https://github.com/masterzen/nginx-upload-progress-module
  1193. syn keyword ngxDirectiveThirdParty contained report_uploads
  1194. syn keyword ngxDirectiveThirdParty contained track_uploads
  1195. syn keyword ngxDirectiveThirdParty contained upload_progress
  1196. syn keyword ngxDirectiveThirdParty contained upload_progress_content_type
  1197. syn keyword ngxDirectiveThirdParty contained upload_progress_header
  1198. syn keyword ngxDirectiveThirdParty contained upload_progress_java_output
  1199. syn keyword ngxDirectiveThirdParty contained upload_progress_json_output
  1200. syn keyword ngxDirectiveThirdParty contained upload_progress_jsonp_output
  1201. syn keyword ngxDirectiveThirdParty contained upload_progress_jsonp_parameter
  1202. syn keyword ngxDirectiveThirdParty contained upload_progress_template
  1203. " Health checks upstreams for nginx
  1204. " https://github.com/yaoweibin/nginx_upstream_check_module
  1205. syn keyword ngxDirectiveThirdParty contained check
  1206. syn keyword ngxDirectiveThirdParty contained check_fastcgi_param
  1207. syn keyword ngxDirectiveThirdParty contained check_http_expect_alive
  1208. syn keyword ngxDirectiveThirdParty contained check_http_send
  1209. syn keyword ngxDirectiveThirdParty contained check_keepalive_requests
  1210. syn keyword ngxDirectiveThirdParty contained check_shm_size
  1211. syn keyword ngxDirectiveThirdParty contained check_status
  1212. " The fair load balancer module for nginx
  1213. " https://github.com/cryptofuture/nginx-upstream-fair
  1214. syn keyword ngxDirectiveThirdParty contained fair
  1215. syn keyword ngxDirectiveThirdParty contained upstream_fair_shm_size
  1216. " Nginx Video Thumb Extractor Module
  1217. " https://github.com/wandenberg/nginx-video-thumbextractor-module
  1218. syn keyword ngxDirectiveThirdParty contained video_thumbextractor
  1219. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_image_height
  1220. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_image_width
  1221. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_baseline
  1222. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_dpi
  1223. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_optimize
  1224. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_progressive_mode
  1225. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_quality
  1226. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_smooth
  1227. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_next_time
  1228. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_only_keyframe
  1229. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_processes_per_worker
  1230. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_threads
  1231. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_color
  1232. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_cols
  1233. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_margin
  1234. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_max_cols
  1235. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_max_rows
  1236. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_padding
  1237. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_rows
  1238. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_sample_interval
  1239. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_video_filename
  1240. syn keyword ngxDirectiveThirdParty contained video_thumbextractor_video_second
  1241. " drizzle-nginx-module - Upstream module for talking to MySQL and Drizzle directly
  1242. " https://github.com/openresty/drizzle-nginx-module
  1243. syn keyword ngxDirectiveThirdParty contained drizzle_buffer_size
  1244. syn keyword ngxDirectiveThirdParty contained drizzle_connect_timeout
  1245. syn keyword ngxDirectiveThirdParty contained drizzle_dbname
  1246. syn keyword ngxDirectiveThirdParty contained drizzle_keepalive
  1247. syn keyword ngxDirectiveThirdParty contained drizzle_module_header
  1248. syn keyword ngxDirectiveThirdParty contained drizzle_pass
  1249. syn keyword ngxDirectiveThirdParty contained drizzle_query
  1250. syn keyword ngxDirectiveThirdParty contained drizzle_recv_cols_timeout
  1251. syn keyword ngxDirectiveThirdParty contained drizzle_recv_rows_timeout
  1252. syn keyword ngxDirectiveThirdParty contained drizzle_send_query_timeout
  1253. syn keyword ngxDirectiveThirdParty contained drizzle_server
  1254. syn keyword ngxDirectiveThirdParty contained drizzle_status
  1255. " ngx_dynamic_upstream
  1256. " https://github.com/cubicdaiya/ngx_dynamic_upstream
  1257. syn keyword ngxDirectiveThirdParty contained dynamic_upstream
  1258. " encrypt and decrypt nginx variable values
  1259. " https://github.com/openresty/encrypted-session-nginx-module
  1260. syn keyword ngxDirectiveThirdParty contained encrypted_session_expires
  1261. syn keyword ngxDirectiveThirdParty contained encrypted_session_iv
  1262. syn keyword ngxDirectiveThirdParty contained encrypted_session_key
  1263. syn keyword ngxDirectiveThirdParty contained set_decrypt_session
  1264. syn keyword ngxDirectiveThirdParty contained set_encrypt_session
  1265. " serve content directly from MongoDB's GridFS
  1266. " https://github.com/mdirolf/nginx-gridfs
  1267. syn keyword ngxDirectiveThirdParty contained gridfs
  1268. syn keyword ngxDirectiveThirdParty contained mongo
  1269. " Adds support for arithmetic operations to NGINX config
  1270. " https://github.com/arut/nginx-let-module
  1271. syn keyword ngxDirectiveThirdParty contained let
  1272. " ngx_http_lua_module - Embed the power of Lua into Nginx HTTP Servers
  1273. " https://github.com/openresty/lua-nginx-module
  1274. syn keyword ngxDirectiveThirdParty contained access_by_lua
  1275. syn keyword ngxDirectiveThirdParty contained access_by_lua_block
  1276. syn keyword ngxDirectiveThirdParty contained access_by_lua_file
  1277. syn keyword ngxDirectiveThirdParty contained access_by_lua_no_postpone
  1278. syn keyword ngxDirectiveThirdParty contained balancer_by_lua_block
  1279. syn keyword ngxDirectiveThirdParty contained balancer_by_lua_file
  1280. syn keyword ngxDirectiveThirdParty contained body_filter_by_lua
  1281. syn keyword ngxDirectiveThirdParty contained body_filter_by_lua_block
  1282. syn keyword ngxDirectiveThirdParty contained body_filter_by_lua_file
  1283. syn keyword ngxDirectiveThirdParty contained content_by_lua
  1284. syn keyword ngxDirectiveThirdParty contained content_by_lua_block
  1285. syn keyword ngxDirectiveThirdParty contained content_by_lua_file
  1286. syn keyword ngxDirectiveThirdParty contained exit_worker_by_lua_block
  1287. syn keyword ngxDirectiveThirdParty contained exit_worker_by_lua_file
  1288. syn keyword ngxDirectiveThirdParty contained header_filter_by_lua
  1289. syn keyword ngxDirectiveThirdParty contained header_filter_by_lua_block
  1290. syn keyword ngxDirectiveThirdParty contained header_filter_by_lua_file
  1291. syn keyword ngxDirectiveThirdParty contained init_by_lua
  1292. syn keyword ngxDirectiveThirdParty contained init_by_lua_block
  1293. syn keyword ngxDirectiveThirdParty contained init_by_lua_file
  1294. syn keyword ngxDirectiveThirdParty contained init_worker_by_lua
  1295. syn keyword ngxDirectiveThirdParty contained init_worker_by_lua_block
  1296. syn keyword ngxDirectiveThirdParty contained init_worker_by_lua_file
  1297. syn keyword ngxDirectiveThirdParty contained log_by_lua
  1298. syn keyword ngxDirectiveThirdParty contained log_by_lua_block
  1299. syn keyword ngxDirectiveThirdParty contained log_by_lua_file
  1300. syn keyword ngxDirectiveThirdParty contained lua_capture_error_log
  1301. syn keyword ngxDirectiveThirdParty contained lua_check_client_abort
  1302. syn keyword ngxDirectiveThirdParty contained lua_code_cache
  1303. syn keyword ngxDirectiveThirdParty contained lua_fake_shm
  1304. syn keyword ngxDirectiveThirdParty contained lua_http10_buffering
  1305. syn keyword ngxDirectiveThirdParty contained lua_load_resty_core
  1306. syn keyword ngxDirectiveThirdParty contained lua_malloc_trim
  1307. syn keyword ngxDirectiveThirdParty contained lua_max_pending_timers
  1308. syn keyword ngxDirectiveThirdParty contained lua_max_running_timers
  1309. syn keyword ngxDirectiveThirdParty contained lua_need_request_body
  1310. syn keyword ngxDirectiveThirdParty contained lua_package_cpath
  1311. syn keyword ngxDirectiveThirdParty contained lua_package_path
  1312. syn keyword ngxDirectiveThirdParty contained lua_regex_cache_max_entries
  1313. syn keyword ngxDirectiveThirdParty contained lua_regex_match_limit
  1314. syn keyword ngxDirectiveThirdParty contained lua_sa_restart
  1315. syn keyword ngxDirectiveThirdParty contained lua_shared_dict
  1316. syn keyword ngxDirectiveThirdParty contained lua_socket_buffer_size
  1317. syn keyword ngxDirectiveThirdParty contained lua_socket_connect_timeout
  1318. syn keyword ngxDirectiveThirdParty contained lua_socket_keepalive_timeout
  1319. syn keyword ngxDirectiveThirdParty contained lua_socket_log_errors
  1320. syn keyword ngxDirectiveThirdParty contained lua_socket_pool_size
  1321. syn keyword ngxDirectiveThirdParty contained lua_socket_read_timeout
  1322. syn keyword ngxDirectiveThirdParty contained lua_socket_send_lowat
  1323. syn keyword ngxDirectiveThirdParty contained lua_socket_send_timeout
  1324. syn keyword ngxDirectiveThirdParty contained lua_ssl_ciphers
  1325. syn keyword ngxDirectiveThirdParty contained lua_ssl_crl
  1326. syn keyword ngxDirectiveThirdParty contained lua_ssl_protocols
  1327. syn keyword ngxDirectiveThirdParty contained lua_ssl_trusted_certificate
  1328. syn keyword ngxDirectiveThirdParty contained lua_ssl_verify_depth
  1329. syn keyword ngxDirectiveThirdParty contained lua_thread_cache_max_entries
  1330. syn keyword ngxDirectiveThirdParty contained lua_transform_underscores_in_response_headers
  1331. syn keyword ngxDirectiveThirdParty contained lua_use_default_type
  1332. syn keyword ngxDirectiveThirdParty contained rewrite_by_lua
  1333. syn keyword ngxDirectiveThirdParty contained rewrite_by_lua_block
  1334. syn keyword ngxDirectiveThirdParty contained rewrite_by_lua_file
  1335. syn keyword ngxDirectiveThirdParty contained rewrite_by_lua_no_postpone
  1336. syn keyword ngxDirectiveThirdParty contained set_by_lua
  1337. syn keyword ngxDirectiveThirdParty contained set_by_lua_block
  1338. syn keyword ngxDirectiveThirdParty contained set_by_lua_file
  1339. syn keyword ngxDirectiveThirdParty contained ssl_certificate_by_lua_block
  1340. syn keyword ngxDirectiveThirdParty contained ssl_certificate_by_lua_file
  1341. syn keyword ngxDirectiveThirdParty contained ssl_session_fetch_by_lua_block
  1342. syn keyword ngxDirectiveThirdParty contained ssl_session_fetch_by_lua_file
  1343. syn keyword ngxDirectiveThirdParty contained ssl_session_store_by_lua_block
  1344. syn keyword ngxDirectiveThirdParty contained ssl_session_store_by_lua_file
  1345. " ngx_memc - An extended version of the standard memcached module
  1346. " https://github.com/openresty/memc-nginx-module
  1347. syn keyword ngxDirectiveThirdParty contained memc_buffer_size
  1348. syn keyword ngxDirectiveThirdParty contained memc_cmds_allowed
  1349. syn keyword ngxDirectiveThirdParty contained memc_connect_timeout
  1350. syn keyword ngxDirectiveThirdParty contained memc_flags_to_last_modified
  1351. syn keyword ngxDirectiveThirdParty contained memc_ignore_client_abort
  1352. syn keyword ngxDirectiveThirdParty contained memc_next_upstream
  1353. syn keyword ngxDirectiveThirdParty contained memc_pass
  1354. syn keyword ngxDirectiveThirdParty contained memc_read_timeout
  1355. syn keyword ngxDirectiveThirdParty contained memc_send_timeout
  1356. syn keyword ngxDirectiveThirdParty contained memc_upstream_fail_timeout
  1357. syn keyword ngxDirectiveThirdParty contained memc_upstream_max_fails
  1358. " ModSecurity web application firewall
  1359. " https://github.com/SpiderLabs/ModSecurity/tree/master
  1360. syn keyword ngxDirectiveThirdParty contained ModSecurityConfig
  1361. syn keyword ngxDirectiveThirdParty contained ModSecurityEnabled
  1362. syn keyword ngxDirectiveThirdParty contained pool_context_hash_size
  1363. " NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX
  1364. " https://github.com/nbs-system/naxsi
  1365. syn keyword ngxDirectiveThirdParty contained BasicRule
  1366. syn keyword ngxDirectiveThirdParty contained CheckRule
  1367. syn keyword ngxDirectiveThirdParty contained DeniedUrl
  1368. syn keyword ngxDirectiveThirdParty contained LearningMode
  1369. syn keyword ngxDirectiveThirdParty contained LibInjectionSql
  1370. syn keyword ngxDirectiveThirdParty contained LibInjectionXss
  1371. syn keyword ngxDirectiveThirdParty contained MainRule
  1372. syn keyword ngxDirectiveThirdParty contained SecRulesDisabled
  1373. syn keyword ngxDirectiveThirdParty contained SecRulesEnabled
  1374. syn keyword ngxDirectiveThirdParty contained basic_rule
  1375. syn keyword ngxDirectiveThirdParty contained check_rule
  1376. syn keyword ngxDirectiveThirdParty contained denied_url
  1377. syn keyword ngxDirectiveThirdParty contained learning_mode
  1378. syn keyword ngxDirectiveThirdParty contained libinjection_sql
  1379. syn keyword ngxDirectiveThirdParty contained libinjection_xss
  1380. syn keyword ngxDirectiveThirdParty contained main_rule
  1381. syn keyword ngxDirectiveThirdParty contained rules_disabled
  1382. syn keyword ngxDirectiveThirdParty contained rules_enabled
  1383. " Phusion Passenger
  1384. " https://www.phusionpassenger.com/library/config/nginx/reference/
  1385. syn keyword ngxDirectiveThirdParty contained passenger_abort_on_startup_error
  1386. syn keyword ngxDirectiveThirdParty contained passenger_abort_websockets_on_process_shutdown
  1387. syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_auth_type
  1388. syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_password
  1389. syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_url
  1390. syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_username
  1391. syn keyword ngxDirectiveThirdParty contained passenger_anonymous_telemetry_proxy
  1392. syn keyword ngxDirectiveThirdParty contained passenger_app_env
  1393. syn keyword ngxDirectiveThirdParty contained passenger_app_file_descriptor_ulimit
  1394. syn keyword ngxDirectiveThirdParty contained passenger_app_group_name
  1395. syn keyword ngxDirectiveThirdParty contained passenger_app_log_file
  1396. syn keyword ngxDirectiveThirdParty contained passenger_app_rights
  1397. syn keyword ngxDirectiveThirdParty contained passenger_app_root
  1398. syn keyword ngxDirectiveThirdParty contained passenger_app_type
  1399. syn keyword ngxDirectiveThirdParty contained passenger_base_uri
  1400. syn keyword ngxDirectiveThirdParty contained passenger_buffer_response
  1401. syn keyword ngxDirectiveThirdParty contained passenger_buffer_size
  1402. syn keyword ngxDirectiveThirdParty contained passenger_buffers
  1403. syn keyword ngxDirectiveThirdParty contained passenger_busy_buffers_size
  1404. syn keyword ngxDirectiveThirdParty contained passenger_concurrency_model
  1405. syn keyword ngxDirectiveThirdParty contained passenger_core_file_descriptor_ulimit
  1406. syn keyword ngxDirectiveThirdParty contained passenger_ctl
  1407. syn keyword ngxDirectiveThirdParty contained passenger_data_buffer_dir
  1408. syn keyword ngxDirectiveThirdParty contained passenger_debugger
  1409. syn keyword ngxDirectiveThirdParty contained passenger_default_group
  1410. syn keyword ngxDirectiveThirdParty contained passenger_default_user
  1411. syn keyword ngxDirectiveThirdParty contained passenger_disable_anonymous_telemetry
  1412. syn keyword ngxDirectiveThirdParty contained passenger_disable_security_update_check
  1413. syn keyword ngxDirectiveThirdParty contained passenger_document_root
  1414. syn keyword ngxDirectiveThirdParty contained passenger_dump_config_manifest
  1415. syn keyword ngxDirectiveThirdParty contained passenger_enabled
  1416. syn keyword ngxDirectiveThirdParty contained passenger_env_var
  1417. syn keyword ngxDirectiveThirdParty contained passenger_file_descriptor_log_file
  1418. syn keyword ngxDirectiveThirdParty contained passenger_fly_with
  1419. syn keyword ngxDirectiveThirdParty contained passenger_force_max_concurrent_requests_per_process
  1420. syn keyword ngxDirectiveThirdParty contained passenger_friendly_error_pages
  1421. syn keyword ngxDirectiveThirdParty contained passenger_group
  1422. syn keyword ngxDirectiveThirdParty contained passenger_headers_hash_bucket_size
  1423. syn keyword ngxDirectiveThirdParty contained passenger_headers_hash_max_size
  1424. syn keyword ngxDirectiveThirdParty contained passenger_ignore_client_abort
  1425. syn keyword ngxDirectiveThirdParty contained passenger_ignore_headers
  1426. syn keyword ngxDirectiveThirdParty contained passenger_instance_registry_dir
  1427. syn keyword ngxDirectiveThirdParty contained passenger_intercept_errors
  1428. syn keyword ngxDirectiveThirdParty contained passenger_load_shell_envvars
  1429. syn keyword ngxDirectiveThirdParty contained passenger_log_file
  1430. syn keyword ngxDirectiveThirdParty contained passenger_log_level
  1431. syn keyword ngxDirectiveThirdParty contained passenger_max_instances
  1432. syn keyword ngxDirectiveThirdParty contained passenger_max_instances_per_app
  1433. syn keyword ngxDirectiveThirdParty contained passenger_max_pool_size
  1434. syn keyword ngxDirectiveThirdParty contained passenger_max_preloader_idle_time
  1435. syn keyword ngxDirectiveThirdParty contained passenger_max_request_queue_size
  1436. syn keyword ngxDirectiveThirdParty contained passenger_max_request_queue_time
  1437. syn keyword ngxDirectiveThirdParty contained passenger_max_request_time
  1438. syn keyword ngxDirectiveThirdParty contained passenger_max_requests
  1439. syn keyword ngxDirectiveThirdParty contained passenger_memory_limit
  1440. syn keyword ngxDirectiveThirdParty contained passenger_meteor_app_settings
  1441. syn keyword ngxDirectiveThirdParty contained passenger_min_instances
  1442. syn keyword ngxDirectiveThirdParty contained passenger_monitor_log_file
  1443. syn keyword ngxDirectiveThirdParty contained passenger_nodejs
  1444. syn keyword ngxDirectiveThirdParty contained passenger_pass_header
  1445. syn keyword ngxDirectiveThirdParty contained passenger_pool_idle_time
  1446. syn keyword ngxDirectiveThirdParty contained passenger_pre_start
  1447. syn keyword ngxDirectiveThirdParty contained passenger_python
  1448. syn keyword ngxDirectiveThirdParty contained passenger_read_timeout
  1449. syn keyword ngxDirectiveThirdParty contained passenger_request_queue_overflow_status_code
  1450. syn keyword ngxDirectiveThirdParty contained passenger_resist_deployment_errors
  1451. syn keyword ngxDirectiveThirdParty contained passenger_response_buffer_high_watermark
  1452. syn keyword ngxDirectiveThirdParty contained passenger_restart_dir
  1453. syn keyword ngxDirectiveThirdParty contained passenger_rolling_restarts
  1454. syn keyword ngxDirectiveThirdParty contained passenger_root
  1455. syn keyword ngxDirectiveThirdParty contained passenger_ruby
  1456. syn keyword ngxDirectiveThirdParty contained passenger_security_update_check_proxy
  1457. syn keyword ngxDirectiveThirdParty contained passenger_set_header
  1458. syn keyword ngxDirectiveThirdParty contained passenger_show_version_in_header
  1459. syn keyword ngxDirectiveThirdParty contained passenger_socket_backlog
  1460. syn keyword ngxDirectiveThirdParty contained passenger_spawn_method
  1461. syn keyword ngxDirectiveThirdParty contained passenger_start_timeout
  1462. syn keyword ngxDirectiveThirdParty contained passenger_startup_file
  1463. syn keyword ngxDirectiveThirdParty contained passenger_stat_throttle_rate
  1464. syn keyword ngxDirectiveThirdParty contained passenger_sticky_sessions
  1465. syn keyword ngxDirectiveThirdParty contained passenger_sticky_sessions_cookie_name
  1466. syn keyword ngxDirectiveThirdParty contained passenger_thread_count
  1467. syn keyword ngxDirectiveThirdParty contained passenger_turbocaching
  1468. syn keyword ngxDirectiveThirdParty contained passenger_user
  1469. syn keyword ngxDirectiveThirdParty contained passenger_user_switching
  1470. syn keyword ngxDirectiveThirdParty contained passenger_vary_turbocache_by_cookie
  1471. syn keyword ngxDirectiveThirdPartyDeprecated contained passenger_analytics_log_group
  1472. syn keyword ngxDirectiveThirdPartyDeprecated contained passenger_analytics_log_user
  1473. syn keyword ngxDirectiveThirdPartyDeprecated contained passenger_debug_log_file
  1474. syn keyword ngxDirectiveThirdPartyDeprecated contained passenger_use_global_queue
  1475. syn keyword ngxDirectiveThirdPartyDeprecated contained rack_env
  1476. syn keyword ngxDirectiveThirdPartyDeprecated contained rails_app_spawner_idle_time
  1477. syn keyword ngxDirectiveThirdPartyDeprecated contained rails_env
  1478. syn keyword ngxDirectiveThirdPartyDeprecated contained rails_framework_spawner_idle_time
  1479. syn keyword ngxDirectiveThirdPartyDeprecated contained rails_spawn_method
  1480. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_filter
  1481. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_gateway_address
  1482. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_gateway_cert
  1483. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_gateway_port
  1484. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_key
  1485. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_proxy_address
  1486. syn keyword ngxDirectiveThirdPartyDeprecated contained union_station_support
  1487. " ngx_postgres is an upstream module that allows nginx to communicate directly with PostgreSQL database
  1488. " https://github.com/FRiCKLE/ngx_postgres
  1489. syn keyword ngxDirectiveThirdParty contained postgres_connect_timeout
  1490. syn keyword ngxDirectiveThirdParty contained postgres_escape
  1491. syn keyword ngxDirectiveThirdParty contained postgres_keepalive
  1492. syn keyword ngxDirectiveThirdParty contained postgres_output
  1493. syn keyword ngxDirectiveThirdParty contained postgres_pass
  1494. syn keyword ngxDirectiveThirdParty contained postgres_query
  1495. syn keyword ngxDirectiveThirdParty contained postgres_result_timeout
  1496. syn keyword ngxDirectiveThirdParty contained postgres_rewrite
  1497. syn keyword ngxDirectiveThirdParty contained postgres_server
  1498. syn keyword ngxDirectiveThirdParty contained postgres_set
  1499. " ngx_rds_csv - Nginx output filter module to convert Resty-DBD-Streams (RDS) to Comma-Separated Values (CSV)
  1500. " https://github.com/openresty/rds-csv-nginx-module
  1501. syn keyword ngxDirectiveThirdParty contained rds_csv
  1502. syn keyword ngxDirectiveThirdParty contained rds_csv_buffer_size
  1503. syn keyword ngxDirectiveThirdParty contained rds_csv_content_type
  1504. syn keyword ngxDirectiveThirdParty contained rds_csv_field_name_header
  1505. syn keyword ngxDirectiveThirdParty contained rds_csv_field_separator
  1506. syn keyword ngxDirectiveThirdParty contained rds_csv_row_terminator
  1507. " ngx_rds_json - an output filter that formats Resty DBD Streams generated by ngx_drizzle and others to JSON
  1508. " https://github.com/openresty/rds-json-nginx-module
  1509. syn keyword ngxDirectiveThirdParty contained rds_json
  1510. syn keyword ngxDirectiveThirdParty contained rds_json_buffer_size
  1511. syn keyword ngxDirectiveThirdParty contained rds_json_content_type
  1512. syn keyword ngxDirectiveThirdParty contained rds_json_errcode_key
  1513. syn keyword ngxDirectiveThirdParty contained rds_json_errstr_key
  1514. syn keyword ngxDirectiveThirdParty contained rds_json_format
  1515. syn keyword ngxDirectiveThirdParty contained rds_json_ret
  1516. syn keyword ngxDirectiveThirdParty contained rds_json_root
  1517. syn keyword ngxDirectiveThirdParty contained rds_json_success_property
  1518. syn keyword ngxDirectiveThirdParty contained rds_json_user_property
  1519. " ngx_redis2 - Nginx upstream module for the Redis 2.0 protocol
  1520. " https://github.com/openresty/redis2-nginx-module
  1521. syn keyword ngxDirectiveThirdParty contained redis2_bind
  1522. syn keyword ngxDirectiveThirdParty contained redis2_buffer_size
  1523. syn keyword ngxDirectiveThirdParty contained redis2_connect_timeout
  1524. syn keyword ngxDirectiveThirdParty contained redis2_literal_raw_query
  1525. syn keyword ngxDirectiveThirdParty contained redis2_next_upstream
  1526. syn keyword ngxDirectiveThirdParty contained redis2_pass
  1527. syn keyword ngxDirectiveThirdParty contained redis2_query
  1528. syn keyword ngxDirectiveThirdParty contained redis2_raw_queries
  1529. syn keyword ngxDirectiveThirdParty contained redis2_raw_query
  1530. syn keyword ngxDirectiveThirdParty contained redis2_read_timeout
  1531. syn keyword ngxDirectiveThirdParty contained redis2_send_timeout
  1532. " NGINX-based Media Streaming Server
  1533. " https://github.com/arut/nginx-rtmp-module
  1534. syn keyword ngxDirectiveThirdParty contained ack_window
  1535. syn keyword ngxDirectiveThirdParty contained application
  1536. syn keyword ngxDirectiveThirdParty contained buffer
  1537. syn keyword ngxDirectiveThirdParty contained buflen
  1538. syn keyword ngxDirectiveThirdParty contained busy
  1539. syn keyword ngxDirectiveThirdParty contained chunk_size
  1540. syn keyword ngxDirectiveThirdParty contained dash
  1541. syn keyword ngxDirectiveThirdParty contained dash_cleanup
  1542. syn keyword ngxDirectiveThirdParty contained dash_fragment
  1543. syn keyword ngxDirectiveThirdParty contained dash_nested
  1544. syn keyword ngxDirectiveThirdParty contained dash_path
  1545. syn keyword ngxDirectiveThirdParty contained dash_playlist_length
  1546. syn keyword ngxDirectiveThirdParty contained drop_idle_publisher
  1547. syn keyword ngxDirectiveThirdParty contained exec
  1548. syn keyword ngxDirectiveThirdParty contained exec_block
  1549. syn keyword ngxDirectiveThirdParty contained exec_kill_signal
  1550. syn keyword ngxDirectiveThirdParty contained exec_options
  1551. syn keyword ngxDirectiveThirdParty contained exec_play
  1552. syn keyword ngxDirectiveThirdParty contained exec_play_done
  1553. syn keyword ngxDirectiveThirdParty contained exec_publish
  1554. syn keyword ngxDirectiveThirdParty contained exec_publish_done
  1555. syn keyword ngxDirectiveThirdParty contained exec_pull
  1556. syn keyword ngxDirectiveThirdParty contained exec_push
  1557. syn keyword ngxDirectiveThirdParty contained exec_record_done
  1558. syn keyword ngxDirectiveThirdParty contained exec_static
  1559. syn keyword ngxDirectiveThirdParty contained hls_audio_buffer_size
  1560. syn keyword ngxDirectiveThirdParty contained hls_base_url
  1561. syn keyword ngxDirectiveThirdParty contained hls_cleanup
  1562. syn keyword ngxDirectiveThirdParty contained hls_continuous
  1563. syn keyword ngxDirectiveThirdParty contained hls_fragment_naming
  1564. syn keyword ngxDirectiveThirdParty contained hls_fragment_naming_granularity
  1565. syn keyword ngxDirectiveThirdParty contained hls_fragment_slicing
  1566. syn keyword ngxDirectiveThirdParty contained hls_fragments_per_key
  1567. syn keyword ngxDirectiveThirdParty contained hls_key_path
  1568. syn keyword ngxDirectiveThirdParty contained hls_key_url
  1569. syn keyword ngxDirectiveThirdParty contained hls_keys
  1570. syn keyword ngxDirectiveThirdParty contained hls_max_audio_delay
  1571. syn keyword ngxDirectiveThirdParty contained hls_max_fragment
  1572. syn keyword ngxDirectiveThirdParty contained hls_muxdelay
  1573. syn keyword ngxDirectiveThirdParty contained hls_nested
  1574. syn keyword ngxDirectiveThirdParty contained hls_path
  1575. syn keyword ngxDirectiveThirdParty contained hls_playlist_length
  1576. syn keyword ngxDirectiveThirdParty contained hls_sync
  1577. syn keyword ngxDirectiveThirdParty contained hls_type
  1578. syn keyword ngxDirectiveThirdParty contained hls_variant
  1579. syn keyword ngxDirectiveThirdParty contained idle_streams
  1580. syn keyword ngxDirectiveThirdParty contained interleave
  1581. syn keyword ngxDirectiveThirdParty contained live
  1582. syn keyword ngxDirectiveThirdParty contained max_connections
  1583. syn keyword ngxDirectiveThirdParty contained max_message
  1584. syn keyword ngxDirectiveThirdParty contained max_streams
  1585. syn keyword ngxDirectiveThirdParty contained meta
  1586. syn keyword ngxDirectiveThirdParty contained netcall_buffer
  1587. syn keyword ngxDirectiveThirdParty contained netcall_timeout
  1588. syn keyword ngxDirectiveThirdParty contained notify_method
  1589. syn keyword ngxDirectiveThirdParty contained notify_relay_redirect
  1590. syn keyword ngxDirectiveThirdParty contained notify_update_strict
  1591. syn keyword ngxDirectiveThirdParty contained notify_update_timeout
  1592. syn keyword ngxDirectiveThirdParty contained on_connect
  1593. syn keyword ngxDirectiveThirdParty contained on_disconnect
  1594. syn keyword ngxDirectiveThirdParty contained on_done
  1595. syn keyword ngxDirectiveThirdParty contained on_play
  1596. syn keyword ngxDirectiveThirdParty contained on_play_done
  1597. syn keyword ngxDirectiveThirdParty contained on_publish
  1598. syn keyword ngxDirectiveThirdParty contained on_publish_done
  1599. syn keyword ngxDirectiveThirdParty contained on_record_done
  1600. syn keyword ngxDirectiveThirdParty contained on_update
  1601. syn keyword ngxDirectiveThirdParty contained out_cork
  1602. syn keyword ngxDirectiveThirdParty contained out_queue
  1603. syn keyword ngxDirectiveThirdParty contained ping
  1604. syn keyword ngxDirectiveThirdParty contained ping_timeout
  1605. syn keyword ngxDirectiveThirdParty contained play
  1606. syn keyword ngxDirectiveThirdParty contained play_local_path
  1607. syn keyword ngxDirectiveThirdParty contained play_restart
  1608. syn keyword ngxDirectiveThirdParty contained play_temp_path
  1609. syn keyword ngxDirectiveThirdParty contained play_time_fix
  1610. syn keyword ngxDirectiveThirdParty contained publish_notify
  1611. syn keyword ngxDirectiveThirdParty contained publish_time_fix
  1612. syn keyword ngxDirectiveThirdParty contained pull
  1613. syn keyword ngxDirectiveThirdParty contained pull_reconnect
  1614. syn keyword ngxDirectiveThirdParty contained push
  1615. syn keyword ngxDirectiveThirdParty contained push_reconnect
  1616. syn keyword ngxDirectiveThirdParty contained record
  1617. syn keyword ngxDirectiveThirdParty contained record_append
  1618. syn keyword ngxDirectiveThirdParty contained record_interval
  1619. syn keyword ngxDirectiveThirdParty contained record_lock
  1620. syn keyword ngxDirectiveThirdParty contained record_max_frames
  1621. syn keyword ngxDirectiveThirdParty contained record_max_size
  1622. syn keyword ngxDirectiveThirdParty contained record_notify
  1623. syn keyword ngxDirectiveThirdParty contained record_path
  1624. syn keyword ngxDirectiveThirdParty contained record_suffix
  1625. syn keyword ngxDirectiveThirdParty contained record_unique
  1626. syn keyword ngxDirectiveThirdParty contained recorder
  1627. syn keyword ngxDirectiveThirdParty contained relay_buffer
  1628. syn keyword ngxDirectiveThirdParty contained respawn
  1629. syn keyword ngxDirectiveThirdParty contained respawn_timeout
  1630. syn keyword ngxDirectiveThirdParty contained rtmp
  1631. syn keyword ngxDirectiveThirdParty contained rtmp_auto_push
  1632. syn keyword ngxDirectiveThirdParty contained rtmp_auto_push_reconnect
  1633. syn keyword ngxDirectiveThirdParty contained rtmp_control
  1634. syn keyword ngxDirectiveThirdParty contained rtmp_socket_dir
  1635. syn keyword ngxDirectiveThirdParty contained rtmp_stat
  1636. syn keyword ngxDirectiveThirdParty contained rtmp_stat_stylesheet
  1637. syn keyword ngxDirectiveThirdParty contained session_relay
  1638. syn keyword ngxDirectiveThirdParty contained so_keepalive
  1639. syn keyword ngxDirectiveThirdParty contained stream_buckets
  1640. syn keyword ngxDirectiveThirdParty contained sync
  1641. syn keyword ngxDirectiveThirdParty contained wait_key
  1642. syn keyword ngxDirectiveThirdParty contained wait_video
  1643. " ngx_set_misc - Various set_xxx directives added to nginx's rewrite module (md5/sha1, sql/json quoting, and many more)
  1644. " https://github.com/openresty/set-misc-nginx-module
  1645. syn keyword ngxDirectiveThirdParty contained set_base32_alphabet
  1646. syn keyword ngxDirectiveThirdParty contained set_base32_padding
  1647. syn keyword ngxDirectiveThirdParty contained set_decode_base32
  1648. syn keyword ngxDirectiveThirdParty contained set_decode_base64
  1649. syn keyword ngxDirectiveThirdParty contained set_decode_hex
  1650. syn keyword ngxDirectiveThirdParty contained set_encode_base32
  1651. syn keyword ngxDirectiveThirdParty contained set_encode_base64
  1652. syn keyword ngxDirectiveThirdParty contained set_encode_hex
  1653. syn keyword ngxDirectiveThirdParty contained set_escape_uri
  1654. syn keyword ngxDirectiveThirdParty contained set_formatted_gmt_time
  1655. syn keyword ngxDirectiveThirdParty contained set_formatted_local_time
  1656. syn keyword ngxDirectiveThirdParty contained set_hashed_upstream
  1657. syn keyword ngxDirectiveThirdParty contained set_hmac_sha1
  1658. syn keyword ngxDirectiveThirdParty contained set_if_empty
  1659. syn keyword ngxDirectiveThirdParty contained set_local_today
  1660. syn keyword ngxDirectiveThirdParty contained set_misc_base32_padding
  1661. syn keyword ngxDirectiveThirdParty contained set_quote_json_str
  1662. syn keyword ngxDirectiveThirdParty contained set_quote_pgsql_str
  1663. syn keyword ngxDirectiveThirdParty contained set_quote_sql_str
  1664. syn keyword ngxDirectiveThirdParty contained set_random
  1665. syn keyword ngxDirectiveThirdParty contained set_rotate
  1666. syn keyword ngxDirectiveThirdParty contained set_secure_random_alphanum
  1667. syn keyword ngxDirectiveThirdParty contained set_secure_random_lcalpha
  1668. syn keyword ngxDirectiveThirdParty contained set_unescape_uri
  1669. " nginx-sflow-module
  1670. " https://github.com/sflow/nginx-sflow-module
  1671. syn keyword ngxDirectiveThirdParty contained sflow
  1672. " Shibboleth auth request module for Nginx
  1673. " https://github.com/nginx-shib/nginx-http-shibboleth
  1674. syn keyword ngxDirectiveThirdParty contained shib_request
  1675. syn keyword ngxDirectiveThirdParty contained shib_request_set
  1676. syn keyword ngxDirectiveThirdParty contained shib_request_use_headers
  1677. " nginx module which adds ability to cache static files
  1678. " https://github.com/FRiCKLE/ngx_slowfs_cache
  1679. syn keyword ngxDirectiveThirdParty contained slowfs_big_file_size
  1680. syn keyword ngxDirectiveThirdParty contained slowfs_cache
  1681. syn keyword ngxDirectiveThirdParty contained slowfs_cache_key
  1682. syn keyword ngxDirectiveThirdParty contained slowfs_cache_min_uses
  1683. syn keyword ngxDirectiveThirdParty contained slowfs_cache_path
  1684. syn keyword ngxDirectiveThirdParty contained slowfs_cache_purge
  1685. syn keyword ngxDirectiveThirdParty contained slowfs_cache_valid
  1686. syn keyword ngxDirectiveThirdParty contained slowfs_temp_path
  1687. " Dynamic Image Transformation Module For nginx
  1688. " https://github.com/cubicdaiya/ngx_small_light
  1689. syn keyword ngxDirectiveThirdParty contained small_light
  1690. syn keyword ngxDirectiveThirdParty contained small_light_buffer
  1691. syn keyword ngxDirectiveThirdParty contained small_light_getparam_mode
  1692. syn keyword ngxDirectiveThirdParty contained small_light_imlib2_temp_dir
  1693. syn keyword ngxDirectiveThirdParty contained small_light_material_dir
  1694. syn keyword ngxDirectiveThirdParty contained small_light_pattern_define
  1695. syn keyword ngxDirectiveThirdParty contained small_light_radius_max
  1696. syn keyword ngxDirectiveThirdParty contained small_light_sigma_max
  1697. " ngx_srcache - Transparent subrequest-based caching layout for arbitrary nginx locations
  1698. " https://github.com/openresty/srcache-nginx-module
  1699. syn keyword ngxDirectiveThirdParty contained srcache_buffer
  1700. syn keyword ngxDirectiveThirdParty contained srcache_default_expire
  1701. syn keyword ngxDirectiveThirdParty contained srcache_fetch
  1702. syn keyword ngxDirectiveThirdParty contained srcache_fetch_skip
  1703. syn keyword ngxDirectiveThirdParty contained srcache_header_buffer_size
  1704. syn keyword ngxDirectiveThirdParty contained srcache_ignore_content_encoding
  1705. syn keyword ngxDirectiveThirdParty contained srcache_max_expire
  1706. syn keyword ngxDirectiveThirdParty contained srcache_methods
  1707. syn keyword ngxDirectiveThirdParty contained srcache_request_cache_control
  1708. syn keyword ngxDirectiveThirdParty contained srcache_response_cache_control
  1709. syn keyword ngxDirectiveThirdParty contained srcache_store
  1710. syn keyword ngxDirectiveThirdParty contained srcache_store_hide_header
  1711. syn keyword ngxDirectiveThirdParty contained srcache_store_max_size
  1712. syn keyword ngxDirectiveThirdParty contained srcache_store_no_cache
  1713. syn keyword ngxDirectiveThirdParty contained srcache_store_no_store
  1714. syn keyword ngxDirectiveThirdParty contained srcache_store_pass_header
  1715. syn keyword ngxDirectiveThirdParty contained srcache_store_private
  1716. syn keyword ngxDirectiveThirdParty contained srcache_store_ranges
  1717. syn keyword ngxDirectiveThirdParty contained srcache_store_skip
  1718. syn keyword ngxDirectiveThirdParty contained srcache_store_statuses
  1719. " NGINX-based VOD Packager
  1720. " https://github.com/kaltura/nginx-vod-module
  1721. syn keyword ngxDirectiveThirdParty contained vod
  1722. syn keyword ngxDirectiveThirdParty contained vod_align_segments_to_key_frames
  1723. syn keyword ngxDirectiveThirdParty contained vod_apply_dynamic_mapping
  1724. syn keyword ngxDirectiveThirdParty contained vod_base_url
  1725. syn keyword ngxDirectiveThirdParty contained vod_bootstrap_segment_durations
  1726. syn keyword ngxDirectiveThirdParty contained vod_cache_buffer_size
  1727. syn keyword ngxDirectiveThirdParty contained vod_clip_from_param_name
  1728. syn keyword ngxDirectiveThirdParty contained vod_clip_to_param_name
  1729. syn keyword ngxDirectiveThirdParty contained vod_drm_clear_lead_segment_count
  1730. syn keyword ngxDirectiveThirdParty contained vod_drm_enabled
  1731. syn keyword ngxDirectiveThirdParty contained vod_drm_info_cache
  1732. syn keyword ngxDirectiveThirdParty contained vod_drm_max_info_length
  1733. syn keyword ngxDirectiveThirdParty contained vod_drm_request_uri
  1734. syn keyword ngxDirectiveThirdParty contained vod_drm_single_key
  1735. syn keyword ngxDirectiveThirdParty contained vod_drm_upstream_location
  1736. syn keyword ngxDirectiveThirdParty contained vod_dynamic_clip_map_uri
  1737. syn keyword ngxDirectiveThirdParty contained vod_dynamic_mapping_cache
  1738. syn keyword ngxDirectiveThirdParty contained vod_encryption_iv_seed
  1739. syn keyword ngxDirectiveThirdParty contained vod_expires
  1740. syn keyword ngxDirectiveThirdParty contained vod_expires_live
  1741. syn keyword ngxDirectiveThirdParty contained vod_expires_live_time_dependent
  1742. syn keyword ngxDirectiveThirdParty contained vod_fallback_upstream_location
  1743. syn keyword ngxDirectiveThirdParty contained vod_force_continuous_timestamps
  1744. syn keyword ngxDirectiveThirdParty contained vod_force_playlist_type_vod
  1745. syn keyword ngxDirectiveThirdParty contained vod_force_sequence_index
  1746. syn keyword ngxDirectiveThirdParty contained vod_gop_look_ahead
  1747. syn keyword ngxDirectiveThirdParty contained vod_gop_look_behind
  1748. syn keyword ngxDirectiveThirdParty contained vod_ignore_edit_list
  1749. syn keyword ngxDirectiveThirdParty contained vod_initial_read_size
  1750. syn keyword ngxDirectiveThirdParty contained vod_lang_param_name
  1751. syn keyword ngxDirectiveThirdParty contained vod_last_modified
  1752. syn keyword ngxDirectiveThirdParty contained vod_last_modified_types
  1753. syn keyword ngxDirectiveThirdParty contained vod_live_mapping_cache
  1754. syn keyword ngxDirectiveThirdParty contained vod_live_response_cache
  1755. syn keyword ngxDirectiveThirdParty contained vod_live_window_duration
  1756. syn keyword ngxDirectiveThirdParty contained vod_manifest_duration_policy
  1757. syn keyword ngxDirectiveThirdParty contained vod_manifest_segment_durations_mode
  1758. syn keyword ngxDirectiveThirdParty contained vod_mapping_cache
  1759. syn keyword ngxDirectiveThirdParty contained vod_max_frames_size
  1760. syn keyword ngxDirectiveThirdParty contained vod_max_mapping_response_size
  1761. syn keyword ngxDirectiveThirdParty contained vod_max_metadata_size
  1762. syn keyword ngxDirectiveThirdParty contained vod_max_upstream_headers_size
  1763. syn keyword ngxDirectiveThirdParty contained vod_media_set_map_uri
  1764. syn keyword ngxDirectiveThirdParty contained vod_media_set_override_json
  1765. syn keyword ngxDirectiveThirdParty contained vod_metadata_cache
  1766. syn keyword ngxDirectiveThirdParty contained vod_min_single_nalu_per_frame_segment
  1767. syn keyword ngxDirectiveThirdParty contained vod_mode
  1768. syn keyword ngxDirectiveThirdParty contained vod_multi_uri_suffix
  1769. syn keyword ngxDirectiveThirdParty contained vod_notification_uri
  1770. syn keyword ngxDirectiveThirdParty contained vod_open_file_thread_pool
  1771. syn keyword ngxDirectiveThirdParty contained vod_output_buffer_pool
  1772. syn keyword ngxDirectiveThirdParty contained vod_parse_hdlr_name
  1773. syn keyword ngxDirectiveThirdParty contained vod_path_response_postfix
  1774. syn keyword ngxDirectiveThirdParty contained vod_path_response_prefix
  1775. syn keyword ngxDirectiveThirdParty contained vod_performance_counters
  1776. syn keyword ngxDirectiveThirdParty contained vod_proxy_header_name
  1777. syn keyword ngxDirectiveThirdParty contained vod_proxy_header_value
  1778. syn keyword ngxDirectiveThirdParty contained vod_redirect_segments_url
  1779. syn keyword ngxDirectiveThirdParty contained vod_remote_upstream_location
  1780. syn keyword ngxDirectiveThirdParty contained vod_response_cache
  1781. syn keyword ngxDirectiveThirdParty contained vod_secret_key
  1782. syn keyword ngxDirectiveThirdParty contained vod_segment_count_policy
  1783. syn keyword ngxDirectiveThirdParty contained vod_segment_duration
  1784. syn keyword ngxDirectiveThirdParty contained vod_segments_base_url
  1785. syn keyword ngxDirectiveThirdParty contained vod_source_clip_map_uri
  1786. syn keyword ngxDirectiveThirdParty contained vod_speed_param_name
  1787. syn keyword ngxDirectiveThirdParty contained vod_status
  1788. syn keyword ngxDirectiveThirdParty contained vod_time_shift_param_name
  1789. syn keyword ngxDirectiveThirdParty contained vod_tracks_param_name
  1790. syn keyword ngxDirectiveThirdParty contained vod_upstream_extra_args
  1791. syn keyword ngxDirectiveThirdParty contained vod_upstream_location
  1792. " Nginx virtual host traffic status module
  1793. " https://github.com/vozlt/nginx-module-vts
  1794. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status
  1795. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_average_method
  1796. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_bypass_limit
  1797. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_bypass_stats
  1798. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display
  1799. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display_format
  1800. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display_jsonp
  1801. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display_sum_key
  1802. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_dump
  1803. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter
  1804. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_by_host
  1805. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_by_set_key
  1806. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_check_duplicate
  1807. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_max_node
  1808. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_histogram_buckets
  1809. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit
  1810. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit_check_duplicate
  1811. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit_traffic
  1812. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit_traffic_by_set_key
  1813. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_set_by_filter
  1814. syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_zone
  1815. " xss-nginx-module - Native cross-site scripting support in nginx
  1816. " https://github.com/openresty/xss-nginx-module
  1817. syn keyword ngxDirectiveThirdParty contained xss_callback_arg
  1818. syn keyword ngxDirectiveThirdParty contained xss_check_status
  1819. syn keyword ngxDirectiveThirdParty contained xss_get
  1820. syn keyword ngxDirectiveThirdParty contained xss_input_types
  1821. syn keyword ngxDirectiveThirdParty contained xss_output_type
  1822. syn keyword ngxDirectiveThirdParty contained xss_override_status
  1823. " Add support for array-typed variables to nginx config files
  1824. " https://github.com/openresty/array-var-nginx-module
  1825. syn keyword ngxDirectiveThirdParty contained array_join
  1826. syn keyword ngxDirectiveThirdParty contained array_map
  1827. syn keyword ngxDirectiveThirdParty contained array_map_op
  1828. syn keyword ngxDirectiveThirdParty contained array_split
  1829. " NGINX module for Brotli compression
  1830. " https://github.com/eustas/ngx_brotli
  1831. syn keyword ngxDirectiveThirdParty contained brotli
  1832. syn keyword ngxDirectiveThirdParty contained brotli_buffers
  1833. syn keyword ngxDirectiveThirdParty contained brotli_comp_level
  1834. syn keyword ngxDirectiveThirdParty contained brotli_min_length
  1835. syn keyword ngxDirectiveThirdParty contained brotli_static
  1836. syn keyword ngxDirectiveThirdParty contained brotli_types
  1837. syn keyword ngxDirectiveThirdParty contained brotli_window
  1838. " form-input-nginx-module
  1839. " https://github.com/calio/form-input-nginx-module
  1840. syn keyword ngxDirectiveThirdParty contained set_form_input
  1841. syn keyword ngxDirectiveThirdParty contained set_form_input_multi
  1842. " character conversion nginx module using libiconv
  1843. " https://github.com/calio/iconv-nginx-module
  1844. syn keyword ngxDirectiveThirdParty contained iconv_buffer_size
  1845. syn keyword ngxDirectiveThirdParty contained iconv_filter
  1846. syn keyword ngxDirectiveThirdParty contained set_iconv
  1847. " 3rd party modules list taken from
  1848. " https://www.nginx.com/resources/wiki/modules/
  1849. " ---------------------------------------------
  1850. " Nginx Module for Authenticating Akamai G2O requests
  1851. " https://github.com/kaltura/nginx_mod_akamai_g2o
  1852. syn keyword ngxDirectiveThirdParty contained g2o
  1853. syn keyword ngxDirectiveThirdParty contained g2o_data_header
  1854. syn keyword ngxDirectiveThirdParty contained g2o_hash_function
  1855. syn keyword ngxDirectiveThirdParty contained g2o_key
  1856. syn keyword ngxDirectiveThirdParty contained g2o_log_level
  1857. syn keyword ngxDirectiveThirdParty contained g2o_nonce
  1858. syn keyword ngxDirectiveThirdParty contained g2o_sign_header
  1859. syn keyword ngxDirectiveThirdParty contained g2o_time_window
  1860. syn keyword ngxDirectiveThirdParty contained g2o_version
  1861. " nginx_lua_module
  1862. " https://github.com/alacner/nginx_lua_module
  1863. syn keyword ngxDirectiveThirdParty contained lua_file
  1864. " Nginx Audio Track for HTTP Live Streaming
  1865. " https://github.com/flavioribeiro/nginx-audio-track-for-hls-module
  1866. syn keyword ngxDirectiveThirdParty contained ngx_hls_audio_track
  1867. syn keyword ngxDirectiveThirdParty contained ngx_hls_audio_track_output_format
  1868. syn keyword ngxDirectiveThirdParty contained ngx_hls_audio_track_output_header
  1869. syn keyword ngxDirectiveThirdParty contained ngx_hls_audio_track_rootpath
  1870. " A Nginx module to dump backtrace when a worker process exits abnormally
  1871. " https://github.com/alibaba/nginx-backtrace
  1872. syn keyword ngxDirectiveThirdParty contained backtrace_log
  1873. syn keyword ngxDirectiveThirdParty contained backtrace_max_stack_size
  1874. " circle_gif module
  1875. " https://github.com/evanmiller/nginx_circle_gif
  1876. syn keyword ngxDirectiveThirdParty contained circle_gif
  1877. syn keyword ngxDirectiveThirdParty contained circle_gif_max_radius
  1878. syn keyword ngxDirectiveThirdParty contained circle_gif_min_radius
  1879. syn keyword ngxDirectiveThirdParty contained circle_gif_step_radius
  1880. " Upstream Consistent Hash
  1881. " https://github.com/replay/ngx_http_consistent_hash
  1882. syn keyword ngxDirectiveThirdParty contained consistent_hash
  1883. " Nginx module for etags on dynamic content
  1884. " https://github.com/kali/nginx-dynamic-etags
  1885. syn keyword ngxDirectiveThirdParty contained dynamic_etags
  1886. " Enhanced Nginx Memcached Module
  1887. " https://github.com/bpaquet/ngx_http_enhanced_memcached_module
  1888. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_allow_delete
  1889. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_allow_put
  1890. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_bind
  1891. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_buffer_size
  1892. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_connect_timeout
  1893. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_flush
  1894. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_flush_namespace
  1895. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_hash_keys_with_md5
  1896. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_pass
  1897. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_read_timeout
  1898. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_send_timeout
  1899. syn keyword ngxDirectiveThirdParty contained enhanced_memcached_stats
  1900. " nginx max connections queue
  1901. " https://github.com/ezmobius/nginx-ey-balancer
  1902. syn keyword ngxDirectiveThirdParty contained max_connections_max_queue_length
  1903. syn keyword ngxDirectiveThirdParty contained max_connections_queue_timeout
  1904. " Nginx module for POST authentication and authorization
  1905. " https://github.com/veruu/ngx_form_auth
  1906. syn keyword ngxDirectiveThirdParty contained form_auth
  1907. syn keyword ngxDirectiveThirdParty contained form_auth_login
  1908. syn keyword ngxDirectiveThirdParty contained form_auth_pam_service
  1909. syn keyword ngxDirectiveThirdParty contained form_auth_password
  1910. syn keyword ngxDirectiveThirdParty contained form_auth_remote_user
  1911. " ngx_http_accounting_module
  1912. " https://github.com/Lax/ngx_http_accounting_module
  1913. syn keyword ngxDirectiveThirdParty contained accounting
  1914. syn keyword ngxDirectiveThirdParty contained accounting_id
  1915. syn keyword ngxDirectiveThirdParty contained accounting_interval
  1916. syn keyword ngxDirectiveThirdParty contained accounting_log
  1917. syn keyword ngxDirectiveThirdParty contained accounting_perturb
  1918. " concatenating files in a given context: CSS and JS files usually
  1919. " https://github.com/alibaba/nginx-http-concat
  1920. syn keyword ngxDirectiveThirdParty contained concat
  1921. syn keyword ngxDirectiveThirdParty contained concat_delimiter
  1922. syn keyword ngxDirectiveThirdParty contained concat_ignore_file_error
  1923. syn keyword ngxDirectiveThirdParty contained concat_max_files
  1924. syn keyword ngxDirectiveThirdParty contained concat_types
  1925. syn keyword ngxDirectiveThirdParty contained concat_unique
  1926. " update upstreams' config by restful interface
  1927. " https://github.com/yzprofile/ngx_http_dyups_module
  1928. syn keyword ngxDirectiveThirdParty contained dyups_interface
  1929. syn keyword ngxDirectiveThirdParty contained dyups_shm_zone_size
  1930. " add given content to the end of the response according to the condition specified
  1931. " https://github.com/flygoast/ngx_http_footer_if_filter
  1932. syn keyword ngxDirectiveThirdParty contained footer_if
  1933. " NGINX HTTP Internal Redirect Module
  1934. " https://github.com/flygoast/ngx_http_internal_redirect
  1935. syn keyword ngxDirectiveThirdParty contained internal_redirect_if
  1936. syn keyword ngxDirectiveThirdParty contained internal_redirect_if_no_postpone
  1937. " nginx-ip-blocker
  1938. " https://github.com/tmthrgd/nginx-ip-blocker
  1939. syn keyword ngxDirectiveThirdParty contained ip_blocker
  1940. " IP2Location Nginx
  1941. " https://github.com/chrislim2888/ip2location-nginx
  1942. syn keyword ngxDirectiveThirdParty contained ip2location_database
  1943. " Limit upload rate
  1944. " https://github.com/cfsego/limit_upload_rate
  1945. syn keyword ngxDirectiveThirdParty contained limit_upload_rate
  1946. syn keyword ngxDirectiveThirdParty contained limit_upload_rate_after
  1947. syn keyword ngxDirectiveThirdParty contained limit_upload_rate_log_level
  1948. " limit the number of connections to upstream
  1949. " https://github.com/cfsego/nginx-limit-upstream
  1950. syn keyword ngxDirectiveThirdParty contained limit_upstream_conn
  1951. syn keyword ngxDirectiveThirdParty contained limit_upstream_log_level
  1952. syn keyword ngxDirectiveThirdParty contained limit_upstream_zone
  1953. " conditional accesslog for nginx
  1954. " https://github.com/cfsego/ngx_log_if
  1955. syn keyword ngxDirectiveThirdParty contained access_log_bypass_if
  1956. " log messages over ZeroMQ
  1957. " https://github.com/alticelabs/nginx-log-zmq
  1958. syn keyword ngxDirectiveThirdParty contained log_zmq_endpoint
  1959. syn keyword ngxDirectiveThirdParty contained log_zmq_format
  1960. syn keyword ngxDirectiveThirdParty contained log_zmq_off
  1961. syn keyword ngxDirectiveThirdParty contained log_zmq_server
  1962. " simple module to uppercase/lowercase strings in the nginx config
  1963. " https://github.com/replay/ngx_http_lower_upper_case
  1964. syn keyword ngxDirectiveThirdParty contained lower
  1965. syn keyword ngxDirectiveThirdParty contained upper
  1966. " content filter for nginx, which returns the md5 hash of the content otherwise returned
  1967. " https://github.com/kainswor/nginx_md5_filter
  1968. syn keyword ngxDirectiveThirdParty contained md5_filter
  1969. " Non-blocking upstream module for Nginx to connect to MongoDB
  1970. " https://github.com/simpl/ngx_mongo
  1971. syn keyword ngxDirectiveThirdParty contained mongo_auth
  1972. syn keyword ngxDirectiveThirdParty contained mongo_bind
  1973. syn keyword ngxDirectiveThirdParty contained mongo_buffer_size
  1974. syn keyword ngxDirectiveThirdParty contained mongo_buffering
  1975. syn keyword ngxDirectiveThirdParty contained mongo_buffers
  1976. syn keyword ngxDirectiveThirdParty contained mongo_busy_buffers_size
  1977. syn keyword ngxDirectiveThirdParty contained mongo_connect_timeout
  1978. syn keyword ngxDirectiveThirdParty contained mongo_json
  1979. syn keyword ngxDirectiveThirdParty contained mongo_next_upstream
  1980. syn keyword ngxDirectiveThirdParty contained mongo_pass
  1981. syn keyword ngxDirectiveThirdParty contained mongo_query
  1982. syn keyword ngxDirectiveThirdParty contained mongo_read_timeout
  1983. syn keyword ngxDirectiveThirdParty contained mongo_send_timeout
  1984. " Nginx OCSP processing module designed for response caching
  1985. " https://github.com/kyprizel/nginx_ocsp_proxy-module
  1986. syn keyword ngxDirectiveThirdParty contained ocsp_cache_timeout
  1987. syn keyword ngxDirectiveThirdParty contained ocsp_proxy
  1988. " Nginx OpenSSL version check at startup
  1989. " https://github.com/apcera/nginx-openssl-version
  1990. syn keyword ngxDirectiveThirdParty contained openssl_builddate_minimum
  1991. syn keyword ngxDirectiveThirdParty contained openssl_version_minimum
  1992. " Automatic PageSpeed optimization module for Nginx
  1993. " https://github.com/pagespeed/ngx_pagespeed
  1994. syn keyword ngxDirectiveThirdParty contained pagespeed
  1995. " PECL Memcache standard hashing compatible loadbalancer for Nginx
  1996. " https://github.com/replay/ngx_http_php_memcache_standard_balancer
  1997. syn keyword ngxDirectiveThirdParty contained hash_key
  1998. " nginx module to parse php sessions
  1999. " https://github.com/replay/ngx_http_php_session
  2000. syn keyword ngxDirectiveThirdParty contained php_session_parse
  2001. syn keyword ngxDirectiveThirdParty contained php_session_strip_formatting
  2002. " Nginx HTTP rDNS module
  2003. " https://github.com/flant/nginx-http-rdns
  2004. syn keyword ngxDirectiveThirdParty contained rdns
  2005. syn keyword ngxDirectiveThirdParty contained rdns_allow
  2006. syn keyword ngxDirectiveThirdParty contained rdns_deny
  2007. " Streaming regular expression replacement in response bodies
  2008. " https://github.com/openresty/replace-filter-nginx-module
  2009. syn keyword ngxDirectiveThirdParty contained replace_filter
  2010. syn keyword ngxDirectiveThirdParty contained replace_filter_last_modified
  2011. syn keyword ngxDirectiveThirdParty contained replace_filter_max_buffered_size
  2012. syn keyword ngxDirectiveThirdParty contained replace_filter_skip
  2013. syn keyword ngxDirectiveThirdParty contained replace_filter_types
  2014. " Link RRDtool's graphing facilities directly into nginx
  2015. " https://github.com/evanmiller/mod_rrd_graph
  2016. syn keyword ngxDirectiveThirdParty contained rrd_graph
  2017. syn keyword ngxDirectiveThirdParty contained rrd_graph_root
  2018. " Module for nginx to proxy rtmp using http protocol
  2019. " https://github.com/kwojtek/nginx-rtmpt-proxy-module
  2020. syn keyword ngxDirectiveThirdParty contained rtmpt_proxy
  2021. syn keyword ngxDirectiveThirdParty contained rtmpt_proxy_http_timeout
  2022. syn keyword ngxDirectiveThirdParty contained rtmpt_proxy_rtmp_timeout
  2023. syn keyword ngxDirectiveThirdParty contained rtmpt_proxy_stat
  2024. syn keyword ngxDirectiveThirdParty contained rtmpt_proxy_stylesheet
  2025. syn keyword ngxDirectiveThirdParty contained rtmpt_proxy_target
  2026. " Syntactically Awesome NGINX Module
  2027. " https://github.com/mneudert/sass-nginx-module
  2028. syn keyword ngxDirectiveThirdParty contained sass_compile
  2029. syn keyword ngxDirectiveThirdParty contained sass_error_log
  2030. syn keyword ngxDirectiveThirdParty contained sass_include_path
  2031. syn keyword ngxDirectiveThirdParty contained sass_indent
  2032. syn keyword ngxDirectiveThirdParty contained sass_is_indented_syntax
  2033. syn keyword ngxDirectiveThirdParty contained sass_linefeed
  2034. syn keyword ngxDirectiveThirdParty contained sass_output_style
  2035. syn keyword ngxDirectiveThirdParty contained sass_precision
  2036. syn keyword ngxDirectiveThirdParty contained sass_source_comments
  2037. syn keyword ngxDirectiveThirdParty contained sass_source_map_embed
  2038. " Nginx Selective Cache Purge Module
  2039. " https://github.com/wandenberg/nginx-selective-cache-purge-module
  2040. syn keyword ngxDirectiveThirdParty contained selective_cache_purge_query
  2041. syn keyword ngxDirectiveThirdParty contained selective_cache_purge_redis_database
  2042. syn keyword ngxDirectiveThirdParty contained selective_cache_purge_redis_host
  2043. syn keyword ngxDirectiveThirdParty contained selective_cache_purge_redis_password
  2044. syn keyword ngxDirectiveThirdParty contained selective_cache_purge_redis_port
  2045. syn keyword ngxDirectiveThirdParty contained selective_cache_purge_redis_unix_socket
  2046. " cconv nginx module
  2047. " https://github.com/liseen/set-cconv-nginx-module
  2048. syn keyword ngxDirectiveThirdParty contained set_cconv_to_simp
  2049. syn keyword ngxDirectiveThirdParty contained set_cconv_to_trad
  2050. syn keyword ngxDirectiveThirdParty contained set_pinyin_to_normal
  2051. " Nginx module that allows the setting of variables to the value of a variety of hashes
  2052. " https://github.com/simpl/ngx_http_set_hash
  2053. syn keyword ngxDirectiveThirdParty contained set_md5
  2054. syn keyword ngxDirectiveThirdParty contained set_md5_upper
  2055. syn keyword ngxDirectiveThirdParty contained set_murmur2
  2056. syn keyword ngxDirectiveThirdParty contained set_murmur2_upper
  2057. syn keyword ngxDirectiveThirdParty contained set_sha1
  2058. syn keyword ngxDirectiveThirdParty contained set_sha1_upper
  2059. " Nginx module to set the language of a request based on a number of options
  2060. " https://github.com/simpl/ngx_http_set_lang
  2061. syn keyword ngxDirectiveThirdParty contained lang_cookie
  2062. syn keyword ngxDirectiveThirdParty contained lang_get_var
  2063. syn keyword ngxDirectiveThirdParty contained lang_host
  2064. syn keyword ngxDirectiveThirdParty contained lang_list
  2065. syn keyword ngxDirectiveThirdParty contained lang_post_var
  2066. syn keyword ngxDirectiveThirdParty contained lang_referer
  2067. syn keyword ngxDirectiveThirdParty contained set_lang
  2068. syn keyword ngxDirectiveThirdParty contained set_lang_method
  2069. " Nginx Sorted Querystring Module
  2070. " https://github.com/wandenberg/nginx-sorted-querystring-module
  2071. syn keyword ngxDirectiveThirdParty contained sorted_querysting_filter_parameter
  2072. " Nginx upstream module for Sphinx 2.x search daemon
  2073. " https://github.com/reeteshranjan/sphinx2-nginx-module
  2074. syn keyword ngxDirectiveThirdParty contained sphinx2_bind
  2075. syn keyword ngxDirectiveThirdParty contained sphinx2_buffer_size
  2076. syn keyword ngxDirectiveThirdParty contained sphinx2_connect_timeout
  2077. syn keyword ngxDirectiveThirdParty contained sphinx2_next_upstream
  2078. syn keyword ngxDirectiveThirdParty contained sphinx2_pass
  2079. syn keyword ngxDirectiveThirdParty contained sphinx2_read_timeout
  2080. syn keyword ngxDirectiveThirdParty contained sphinx2_send_timeout
  2081. " Nginx module for retrieving user attributes and groups from SSSD
  2082. " https://github.com/veruu/ngx_sssd_info
  2083. syn keyword ngxDirectiveThirdParty contained sssd_info
  2084. syn keyword ngxDirectiveThirdParty contained sssd_info_attribute
  2085. syn keyword ngxDirectiveThirdParty contained sssd_info_attribute_separator
  2086. syn keyword ngxDirectiveThirdParty contained sssd_info_attributes
  2087. syn keyword ngxDirectiveThirdParty contained sssd_info_group
  2088. syn keyword ngxDirectiveThirdParty contained sssd_info_group_separator
  2089. syn keyword ngxDirectiveThirdParty contained sssd_info_groups
  2090. syn keyword ngxDirectiveThirdParty contained sssd_info_output_to
  2091. " An nginx module for sending statistics to statsd
  2092. " https://github.com/zebrafishlabs/nginx-statsd
  2093. syn keyword ngxDirectiveThirdParty contained statsd_count
  2094. syn keyword ngxDirectiveThirdParty contained statsd_sample_rate
  2095. syn keyword ngxDirectiveThirdParty contained statsd_server
  2096. syn keyword ngxDirectiveThirdParty contained statsd_timing
  2097. " ngx_stream_echo - TCP/stream echo module for NGINX (a port of the ngx_http_echo module)
  2098. " https://github.com/openresty/stream-echo-nginx-module
  2099. syn keyword ngxDirectiveThirdParty contained echo
  2100. syn keyword ngxDirectiveThirdParty contained echo_client_error_log_level
  2101. syn keyword ngxDirectiveThirdParty contained echo_discard_request
  2102. syn keyword ngxDirectiveThirdParty contained echo_duplicate
  2103. syn keyword ngxDirectiveThirdParty contained echo_flush_wait
  2104. syn keyword ngxDirectiveThirdParty contained echo_lingering_close
  2105. syn keyword ngxDirectiveThirdParty contained echo_lingering_time
  2106. syn keyword ngxDirectiveThirdParty contained echo_lingering_timeout
  2107. syn keyword ngxDirectiveThirdParty contained echo_read_buffer_size
  2108. syn keyword ngxDirectiveThirdParty contained echo_read_bytes
  2109. syn keyword ngxDirectiveThirdParty contained echo_read_line
  2110. syn keyword ngxDirectiveThirdParty contained echo_read_timeout
  2111. syn keyword ngxDirectiveThirdParty contained echo_request_data
  2112. syn keyword ngxDirectiveThirdParty contained echo_send_timeout
  2113. syn keyword ngxDirectiveThirdParty contained echo_sleep
  2114. " Embed the power of Lua into NGINX TCP/UDP servers
  2115. " https://github.com/openresty/stream-lua-nginx-module
  2116. syn keyword ngxDirectiveThirdParty contained lua_add_variable
  2117. syn keyword ngxDirectiveThirdParty contained preread_by_lua_block
  2118. syn keyword ngxDirectiveThirdParty contained preread_by_lua_file
  2119. syn keyword ngxDirectiveThirdParty contained preread_by_lua_no_postpone
  2120. " nginx-upsync-module
  2121. " https://github.com/weibocom/nginx-upsync-module
  2122. syn keyword ngxDirectiveThirdParty contained upstream_show
  2123. syn keyword ngxDirectiveThirdParty contained upsync
  2124. syn keyword ngxDirectiveThirdParty contained upsync_dump_path
  2125. syn keyword ngxDirectiveThirdParty contained upsync_lb
  2126. " Whitespace stripper for nginx
  2127. " https://github.com/evanmiller/mod_strip
  2128. syn keyword ngxDirectiveThirdParty contained strip
  2129. " Split one big HTTP/Range request to multiple subrange requesets
  2130. " https://github.com/Qihoo360/ngx_http_subrange_module
  2131. syn keyword ngxDirectiveThirdParty contained subrange
  2132. " summarizer-nginx-module
  2133. " https://github.com/reeteshranjan/summarizer-nginx-module
  2134. syn keyword ngxDirectiveThirdParty contained summarizer_bind
  2135. syn keyword ngxDirectiveThirdParty contained summarizer_buffer_size
  2136. syn keyword ngxDirectiveThirdParty contained summarizer_connect_timeout
  2137. syn keyword ngxDirectiveThirdParty contained summarizer_next_upstream
  2138. syn keyword ngxDirectiveThirdParty contained summarizer_pass
  2139. syn keyword ngxDirectiveThirdParty contained summarizer_read_timeout
  2140. syn keyword ngxDirectiveThirdParty contained summarizer_send_timeout
  2141. " nginx module providing API to communicate with supervisord and manage (start/stop) backends on-demand
  2142. " https://github.com/FRiCKLE/ngx_supervisord
  2143. syn keyword ngxDirectiveThirdParty contained supervisord
  2144. syn keyword ngxDirectiveThirdParty contained supervisord_inherit_backend_status
  2145. syn keyword ngxDirectiveThirdParty contained supervisord_name
  2146. syn keyword ngxDirectiveThirdParty contained supervisord_start
  2147. syn keyword ngxDirectiveThirdParty contained supervisord_stop
  2148. " simple robot mitigation module using cookie based challenge/response technique. Not supported any more.
  2149. " https://github.com/kyprizel/testcookie-nginx-module
  2150. syn keyword ngxDirectiveThirdParty contained testcookie
  2151. syn keyword ngxDirectiveThirdParty contained testcookie_arg
  2152. syn keyword ngxDirectiveThirdParty contained testcookie_deny_keepalive
  2153. syn keyword ngxDirectiveThirdParty contained testcookie_domain
  2154. syn keyword ngxDirectiveThirdParty contained testcookie_expires
  2155. syn keyword ngxDirectiveThirdParty contained testcookie_fallback
  2156. syn keyword ngxDirectiveThirdParty contained testcookie_get_only
  2157. syn keyword ngxDirectiveThirdParty contained testcookie_httponly_flag
  2158. syn keyword ngxDirectiveThirdParty contained testcookie_https_location
  2159. syn keyword ngxDirectiveThirdParty contained testcookie_internal
  2160. syn keyword ngxDirectiveThirdParty contained testcookie_max_attempts
  2161. syn keyword ngxDirectiveThirdParty contained testcookie_name
  2162. syn keyword ngxDirectiveThirdParty contained testcookie_p3p
  2163. syn keyword ngxDirectiveThirdParty contained testcookie_pass
  2164. syn keyword ngxDirectiveThirdParty contained testcookie_path
  2165. syn keyword ngxDirectiveThirdParty contained testcookie_port_in_redirect
  2166. syn keyword ngxDirectiveThirdParty contained testcookie_redirect_via_refresh
  2167. syn keyword ngxDirectiveThirdParty contained testcookie_refresh_encrypt_cookie
  2168. syn keyword ngxDirectiveThirdParty contained testcookie_refresh_encrypt_cookie_iv
  2169. syn keyword ngxDirectiveThirdParty contained testcookie_refresh_encrypt_cookie_key
  2170. syn keyword ngxDirectiveThirdParty contained testcookie_refresh_status
  2171. syn keyword ngxDirectiveThirdParty contained testcookie_refresh_template
  2172. syn keyword ngxDirectiveThirdParty contained testcookie_samesite
  2173. syn keyword ngxDirectiveThirdParty contained testcookie_secret
  2174. syn keyword ngxDirectiveThirdParty contained testcookie_secure_flag
  2175. syn keyword ngxDirectiveThirdParty contained testcookie_session
  2176. syn keyword ngxDirectiveThirdParty contained testcookie_whitelist
  2177. " ngx_http_types_filter_module
  2178. " https://github.com/flygoast/ngx_http_types_filter
  2179. syn keyword ngxDirectiveThirdParty contained types_filter
  2180. syn keyword ngxDirectiveThirdParty contained types_filter_use_default
  2181. " A module allowing the nginx to use files embedded in a zip file
  2182. " https://github.com/youzee/nginx-unzip-module
  2183. syn keyword ngxDirectiveThirdParty contained file_in_unzip
  2184. syn keyword ngxDirectiveThirdParty contained file_in_unzip_archivefile
  2185. syn keyword ngxDirectiveThirdParty contained file_in_unzip_extract
  2186. " An asynchronous domain name resolve module for nginx upstream
  2187. " https://github.com/wdaike/ngx_upstream_jdomain
  2188. syn keyword ngxDirectiveThirdParty contained jdomain
  2189. " Nginx url encoding converting module
  2190. " https://github.com/vozlt/nginx-module-url
  2191. syn keyword ngxDirectiveThirdParty contained url_encoding_convert
  2192. syn keyword ngxDirectiveThirdParty contained url_encoding_convert_alloc_size
  2193. syn keyword ngxDirectiveThirdParty contained url_encoding_convert_alloc_size_x
  2194. syn keyword ngxDirectiveThirdParty contained url_encoding_convert_from
  2195. syn keyword ngxDirectiveThirdParty contained url_encoding_convert_phase
  2196. syn keyword ngxDirectiveThirdParty contained url_encoding_convert_to
  2197. " A nginx module to match browsers and crawlers
  2198. " https://github.com/alibaba/nginx-http-user-agent
  2199. syn keyword ngxDirectiveThirdParty contained user_agent
  2200. " nginx load-balancer module implementing ketama consistent hashing
  2201. " https://github.com/flygoast/ngx_http_upstream_ketama_chash
  2202. syn keyword ngxDirectiveThirdParty contained ketama_chash
  2203. " nginx-sticky-module-ng
  2204. " https://github.com/ayty-adrianomartins/nginx-sticky-module-ng
  2205. syn keyword ngxDirectiveThirdParty contained sticky_no_fallback
  2206. " dynamic linking and call the function of your application
  2207. " https://github.com/Taymindis/nginx-link-function
  2208. syn keyword ngxDirectiveThirdParty contained ngx_link_func_add_prop
  2209. syn keyword ngxDirectiveThirdParty contained ngx_link_func_add_req_header
  2210. syn keyword ngxDirectiveThirdParty contained ngx_link_func_ca_cert
  2211. syn keyword ngxDirectiveThirdParty contained ngx_link_func_call
  2212. syn keyword ngxDirectiveThirdParty contained ngx_link_func_download_link_lib
  2213. syn keyword ngxDirectiveThirdParty contained ngx_link_func_lib
  2214. syn keyword ngxDirectiveThirdParty contained ngx_link_func_shm_size
  2215. syn keyword ngxDirectiveThirdParty contained ngx_link_func_subrequest
  2216. " purge content from FastCGI, proxy, SCGI and uWSGI caches
  2217. " https://github.com/torden/ngx_cache_purge
  2218. syn keyword ngxDirectiveThirdParty contained cache_purge_response_type
  2219. " set the flags "HttpOnly", "secure" and "SameSite" for cookies
  2220. " https://github.com/AirisX/nginx_cookie_flag_module
  2221. syn keyword ngxDirectiveThirdParty contained set_cookie_flag
  2222. " Embed websockify into Nginx (convert any tcp connection into websocket)
  2223. " https://github.com/tg123/websockify-nginx-module
  2224. syn keyword ngxDirectiveThirdParty contained websockify_buffer_size
  2225. syn keyword ngxDirectiveThirdParty contained websockify_connect_timeout
  2226. syn keyword ngxDirectiveThirdParty contained websockify_pass
  2227. syn keyword ngxDirectiveThirdParty contained websockify_read_timeout
  2228. syn keyword ngxDirectiveThirdParty contained websockify_send_timeout
  2229. " IP2Location Nginx
  2230. " https://github.com/ip2location/ip2location-nginx
  2231. syn keyword ngxDirectiveThirdParty contained ip2location_proxy
  2232. syn keyword ngxDirectiveThirdParty contained ip2location_proxy_recursive
  2233. syn keyword ngxDirectiveThirdParty contained ip2location_areacode
  2234. syn keyword ngxDirectiveThirdParty contained ip2location_city
  2235. syn keyword ngxDirectiveThirdParty contained ip2location_country_long
  2236. syn keyword ngxDirectiveThirdParty contained ip2location_country_short
  2237. syn keyword ngxDirectiveThirdParty contained ip2location_domain
  2238. syn keyword ngxDirectiveThirdParty contained ip2location_elevation
  2239. syn keyword ngxDirectiveThirdParty contained ip2location_iddcode
  2240. syn keyword ngxDirectiveThirdParty contained ip2location_isp
  2241. syn keyword ngxDirectiveThirdParty contained ip2location_latitude
  2242. syn keyword ngxDirectiveThirdParty contained ip2location_longitude
  2243. syn keyword ngxDirectiveThirdParty contained ip2location_mcc
  2244. syn keyword ngxDirectiveThirdParty contained ip2location_mnc
  2245. syn keyword ngxDirectiveThirdParty contained ip2location_mobilebrand
  2246. syn keyword ngxDirectiveThirdParty contained ip2location_netspeed
  2247. syn keyword ngxDirectiveThirdParty contained ip2location_region
  2248. syn keyword ngxDirectiveThirdParty contained ip2location_timezone
  2249. syn keyword ngxDirectiveThirdParty contained ip2location_usagetype
  2250. syn keyword ngxDirectiveThirdParty contained ip2location_weatherstationcode
  2251. syn keyword ngxDirectiveThirdParty contained ip2location_weatherstationname
  2252. syn keyword ngxDirectiveThirdParty contained ip2location_zipcode
  2253. " IP2Proxy module for Nginx
  2254. " https://github.com/ip2location/ip2proxy-nginx
  2255. syn keyword ngxDirectiveThirdParty contained ip2proxy_as
  2256. syn keyword ngxDirectiveThirdParty contained ip2proxy_asn
  2257. syn keyword ngxDirectiveThirdParty contained ip2proxy_city
  2258. syn keyword ngxDirectiveThirdParty contained ip2proxy_country_long
  2259. syn keyword ngxDirectiveThirdParty contained ip2proxy_country_short
  2260. syn keyword ngxDirectiveThirdParty contained ip2proxy_database
  2261. syn keyword ngxDirectiveThirdParty contained ip2proxy_domain
  2262. syn keyword ngxDirectiveThirdParty contained ip2proxy_isp
  2263. syn keyword ngxDirectiveThirdParty contained ip2proxy_is_proxy
  2264. syn keyword ngxDirectiveThirdParty contained ip2proxy_last_seen
  2265. syn keyword ngxDirectiveThirdParty contained ip2proxy_proxy
  2266. syn keyword ngxDirectiveThirdParty contained ip2proxy_proxy_recursive
  2267. syn keyword ngxDirectiveThirdParty contained ip2proxy_proxy_type
  2268. syn keyword ngxDirectiveThirdParty contained ip2proxy_region
  2269. syn keyword ngxDirectiveThirdParty contained ip2proxy_threat
  2270. syn keyword ngxDirectiveThirdParty contained ip2proxy_usage_type
  2271. " highlight
  2272. hi def link ngxComment Comment
  2273. hi def link ngxParamComment Comment
  2274. hi def link ngxListenComment Comment
  2275. hi def link ngxVariable Identifier
  2276. hi def link ngxVariableString PreProc
  2277. hi def link ngxString String
  2278. hi def link ngxListenString String
  2279. hi def link ngxBoolean Boolean
  2280. hi def link ngxDirectiveBlock Statement
  2281. hi def link ngxDirectiveImportant Type
  2282. hi def link ngxDirectiveListen Type
  2283. hi def link ngxDirectiveControl Keyword
  2284. hi def link ngxDirectiveError Constant
  2285. hi def link ngxDirectiveDeprecated Error
  2286. hi def link ngxDirective Identifier
  2287. hi def link ngxDirectiveThirdParty Special
  2288. hi def link ngxDirectiveThirdPartyDeprecated Error
  2289. hi def link ngxListenOptions Keyword
  2290. hi def link ngxListenOptionsDeprecated Error
  2291. let b:current_syntax = "nginx"