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