Mercurial > ec-dotfiles
annotate vendor/vim-syntax/nginx.vim @ 746:6b7f6f09b8d1 default tip
[vimrc] fix php syntax highlight
Example file: https://github.com/ppy/osu-web/blob/e23658f45ac2e85d78bd339947e0d1cee57629c6/app/Libraries/BBCodeFromDB.php
(around the end)
| author | nanaya <me@nanaya.net> |
|---|---|
| date | Wed, 29 Oct 2025 12:28:45 +0900 |
| parents | 78469331407e |
| children |
| rev | line source |
|---|---|
| 596 | 1 " Vim syntax file |
| 2 " Language: nginx.conf | |
| 3 | |
| 4 if exists("b:current_syntax") | |
| 5 finish | |
| 6 end | |
| 7 | |
| 673 | 8 let s:save_cpo = &cpo |
| 9 set cpo&vim | |
| 10 | |
| 612 | 11 " general syntax |
| 596 | 12 |
| 612 | 13 if has("patch-7.4.1142") |
| 14 " except control characters, ";", "{", and "}" | |
| 15 syn iskeyword 33-58,60-122,124,126-255 | |
| 16 endif | |
| 596 | 17 |
| 612 | 18 syn match ngxName '\([^;{} \t\\]\|\\.\)\+' |
| 19 \ contains=@ngxDirectives | |
| 20 \ nextgroup=@ngxParams skipwhite skipempty | |
| 21 syn match ngxParam '\(\${\|[^;{ \t\\]\|\\.\)\+' | |
| 22 \ contained | |
| 23 \ contains=ngxVariable | |
| 24 \ nextgroup=@ngxParams skipwhite skipempty | |
| 25 syn region ngxString start=+\z(["']\)+ end=+\z1+ skip=+\\\\\|\\\z1+ | |
| 26 \ contains=ngxVariableString | |
| 27 \ nextgroup=@ngxParams skipwhite skipempty | |
| 28 syn match ngxParamComment '#.*$' | |
| 29 \ nextgroup=@ngxParams skipwhite skipempty | |
| 30 syn match ngxSemicolon ';' contained | |
| 31 syn region ngxBlock start=+{+ end=+}+ contained | |
| 32 \ contains=@ngxTopLevel | |
| 33 syn match ngxComment '#.*$' | |
| 34 | |
| 35 syn match ngxVariable '\$\(\w\+\|{\w\+}\)' contained | |
| 36 syn match ngxVariableString '\$\(\w\+\|{\w\+}\)' contained | |
| 37 | |
| 38 syn cluster ngxTopLevel | |
| 39 \ contains=ngxName,ngxString,ngxComment | |
| 40 syn cluster ngxDirectives | |
| 41 \ contains=ngxDirective,ngxDirectiveBlock,ngxDirectiveImportant | |
| 42 \ add=ngxDirectiveControl,ngxDirectiveError,ngxDirectiveDeprecated | |
| 43 \ add=ngxDirectiveThirdParty,ngxDirectiveThirdPartyDeprecated | |
| 44 syn cluster ngxParams | |
| 45 \ contains=ngxParam,ngxString,ngxParamComment,ngxSemicolon,ngxBlock | |
| 46 | |
| 47 " boolean parameters | |
| 48 | |
| 49 syn keyword ngxBoolean contained on off | |
| 50 \ nextgroup=@ngxParams skipwhite skipempty | |
| 51 syn cluster ngxParams add=ngxBoolean | |
| 52 | |
| 53 " listen directive | |
| 596 | 54 |
| 612 | 55 syn cluster ngxTopLevel add=ngxDirectiveListen |
| 56 syn keyword ngxDirectiveListen listen | |
| 57 \ nextgroup=@ngxListenParams skipwhite skipempty | |
| 58 syn match ngxListenParam '\(\${\|[^;{ \t\\]\|\\.\)\+' | |
| 59 \ contained | |
| 60 \ nextgroup=@ngxListenParams skipwhite skipempty | |
| 61 syn region ngxListenString start=+\z(["']\)+ end=+\z1+ skip=+\\\\\|\\\z1+ | |
| 62 \ contained | |
| 63 \ nextgroup=@ngxListenParams skipwhite skipempty | |
| 64 syn match ngxListenComment '#.*$' | |
| 65 \ contained | |
| 66 \ nextgroup=@ngxListenParams skipwhite skipempty | |
| 67 syn keyword ngxListenOptions contained | |
| 726 | 68 \ default_server ssl quic proxy_protocol |
| 612 | 69 \ setfib fastopen backlog rcvbuf sndbuf accept_filter deferred bind |
| 70 \ ipv6only reuseport so_keepalive | |
| 71 \ nextgroup=@ngxListenParams skipwhite skipempty | |
| 72 syn keyword ngxListenOptionsDeprecated contained | |
| 726 | 73 \ http2 |
| 612 | 74 \ nextgroup=@ngxListenParams skipwhite skipempty |
| 75 syn cluster ngxListenParams | |
| 76 \ contains=ngxListenParam,ngxListenString,ngxListenComment | |
| 77 \ add=ngxListenOptions,ngxListenOptionsDeprecated | |
| 596 | 78 |
| 612 | 79 syn keyword ngxDirectiveBlock contained http |
| 80 syn keyword ngxDirectiveBlock contained stream | |
| 81 syn keyword ngxDirectiveBlock contained mail | |
| 82 syn keyword ngxDirectiveBlock contained events | |
| 83 syn keyword ngxDirectiveBlock contained server | |
| 84 syn keyword ngxDirectiveBlock contained types | |
| 85 syn keyword ngxDirectiveBlock contained location | |
| 86 syn keyword ngxDirectiveBlock contained upstream | |
| 87 syn keyword ngxDirectiveBlock contained charset_map | |
| 88 syn keyword ngxDirectiveBlock contained limit_except | |
| 89 syn keyword ngxDirectiveBlock contained if | |
| 90 syn keyword ngxDirectiveBlock contained geo | |
| 91 syn keyword ngxDirectiveBlock contained map | |
| 92 syn keyword ngxDirectiveBlock contained split_clients | |
| 596 | 93 |
| 612 | 94 syn keyword ngxDirectiveImportant contained include |
| 95 syn keyword ngxDirectiveImportant contained root | |
| 96 syn keyword ngxDirectiveImportant contained server_name | |
| 97 syn keyword ngxDirectiveImportant contained internal | |
| 98 syn keyword ngxDirectiveImportant contained proxy_pass | |
| 99 syn keyword ngxDirectiveImportant contained memcached_pass | |
| 100 syn keyword ngxDirectiveImportant contained fastcgi_pass | |
| 101 syn keyword ngxDirectiveImportant contained scgi_pass | |
| 102 syn keyword ngxDirectiveImportant contained uwsgi_pass | |
| 103 syn keyword ngxDirectiveImportant contained try_files | |
| 596 | 104 |
| 612 | 105 syn keyword ngxDirectiveControl contained break |
| 106 syn keyword ngxDirectiveControl contained return | |
| 107 syn keyword ngxDirectiveControl contained rewrite | |
| 108 syn keyword ngxDirectiveControl contained set | |
| 109 | |
| 110 syn keyword ngxDirectiveError contained error_page | |
| 111 syn keyword ngxDirectiveError contained post_action | |
| 112 | |
| 113 syn keyword ngxDirectiveDeprecated contained proxy_downstream_buffer | |
| 114 syn keyword ngxDirectiveDeprecated contained proxy_upstream_buffer | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
115 syn keyword ngxDirectiveDeprecated contained http2_idle_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
116 syn keyword ngxDirectiveDeprecated contained http2_max_field_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
117 syn keyword ngxDirectiveDeprecated contained http2_max_header_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
118 syn keyword ngxDirectiveDeprecated contained http2_max_requests |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
119 syn keyword ngxDirectiveDeprecated contained http2_recv_timeout |
| 596 | 120 |
| 612 | 121 syn keyword ngxDirective contained absolute_redirect |
| 122 syn keyword ngxDirective contained accept_mutex | |
| 123 syn keyword ngxDirective contained accept_mutex_delay | |
| 124 syn keyword ngxDirective contained acceptex_read | |
| 125 syn keyword ngxDirective contained access_log | |
| 126 syn keyword ngxDirective contained add_after_body | |
| 127 syn keyword ngxDirective contained add_before_body | |
| 128 syn keyword ngxDirective contained add_header | |
| 129 syn keyword ngxDirective contained add_trailer | |
| 130 syn keyword ngxDirective contained addition_types | |
| 131 syn keyword ngxDirective contained aio | |
| 132 syn keyword ngxDirective contained aio_write | |
| 133 syn keyword ngxDirective contained alias | |
| 134 syn keyword ngxDirective contained allow | |
| 135 syn keyword ngxDirective contained ancient_browser | |
| 136 syn keyword ngxDirective contained ancient_browser_value | |
| 137 syn keyword ngxDirective contained auth_basic | |
| 138 syn keyword ngxDirective contained auth_basic_user_file | |
| 642 | 139 syn keyword ngxDirective contained auth_delay |
| 612 | 140 syn keyword ngxDirective contained auth_http |
| 141 syn keyword ngxDirective contained auth_http_header | |
| 142 syn keyword ngxDirective contained auth_http_pass_client_cert | |
| 143 syn keyword ngxDirective contained auth_http_timeout | |
| 144 syn keyword ngxDirective contained auth_request | |
| 145 syn keyword ngxDirective contained auth_request_set | |
| 146 syn keyword ngxDirective contained autoindex | |
| 147 syn keyword ngxDirective contained autoindex_exact_size | |
| 148 syn keyword ngxDirective contained autoindex_format | |
| 149 syn keyword ngxDirective contained autoindex_localtime | |
| 150 syn keyword ngxDirective contained charset | |
| 151 syn keyword ngxDirective contained charset_types | |
| 152 syn keyword ngxDirective contained chunked_transfer_encoding | |
| 153 syn keyword ngxDirective contained client_body_buffer_size | |
| 154 syn keyword ngxDirective contained client_body_in_file_only | |
| 155 syn keyword ngxDirective contained client_body_in_single_buffer | |
| 156 syn keyword ngxDirective contained client_body_temp_path | |
| 157 syn keyword ngxDirective contained client_body_timeout | |
| 158 syn keyword ngxDirective contained client_header_buffer_size | |
| 159 syn keyword ngxDirective contained client_header_timeout | |
| 160 syn keyword ngxDirective contained client_max_body_size | |
| 161 syn keyword ngxDirective contained connection_pool_size | |
| 162 syn keyword ngxDirective contained create_full_put_path | |
| 163 syn keyword ngxDirective contained daemon | |
| 164 syn keyword ngxDirective contained dav_access | |
| 165 syn keyword ngxDirective contained dav_methods | |
| 166 syn keyword ngxDirective contained debug_connection | |
| 167 syn keyword ngxDirective contained debug_points | |
| 168 syn keyword ngxDirective contained default_type | |
| 169 syn keyword ngxDirective contained degradation | |
| 170 syn keyword ngxDirective contained degrade | |
| 171 syn keyword ngxDirective contained deny | |
| 172 syn keyword ngxDirective contained devpoll_changes | |
| 173 syn keyword ngxDirective contained devpoll_events | |
| 174 syn keyword ngxDirective contained directio | |
| 175 syn keyword ngxDirective contained directio_alignment | |
| 176 syn keyword ngxDirective contained disable_symlinks | |
| 177 syn keyword ngxDirective contained empty_gif | |
| 178 syn keyword ngxDirective contained env | |
| 179 syn keyword ngxDirective contained epoll_events | |
| 180 syn keyword ngxDirective contained error_log | |
| 181 syn keyword ngxDirective contained etag | |
| 182 syn keyword ngxDirective contained eventport_events | |
| 183 syn keyword ngxDirective contained expires | |
| 184 syn keyword ngxDirective contained fastcgi_bind | |
| 185 syn keyword ngxDirective contained fastcgi_buffer_size | |
| 186 syn keyword ngxDirective contained fastcgi_buffering | |
| 187 syn keyword ngxDirective contained fastcgi_buffers | |
| 188 syn keyword ngxDirective contained fastcgi_busy_buffers_size | |
| 189 syn keyword ngxDirective contained fastcgi_cache | |
| 190 syn keyword ngxDirective contained fastcgi_cache_background_update | |
| 191 syn keyword ngxDirective contained fastcgi_cache_bypass | |
| 192 syn keyword ngxDirective contained fastcgi_cache_key | |
| 193 syn keyword ngxDirective contained fastcgi_cache_lock | |
| 194 syn keyword ngxDirective contained fastcgi_cache_lock_age | |
| 195 syn keyword ngxDirective contained fastcgi_cache_lock_timeout | |
| 196 syn keyword ngxDirective contained fastcgi_cache_max_range_offset | |
| 197 syn keyword ngxDirective contained fastcgi_cache_methods | |
| 198 syn keyword ngxDirective contained fastcgi_cache_min_uses | |
| 199 syn keyword ngxDirective contained fastcgi_cache_path | |
| 200 syn keyword ngxDirective contained fastcgi_cache_revalidate | |
| 201 syn keyword ngxDirective contained fastcgi_cache_use_stale | |
| 202 syn keyword ngxDirective contained fastcgi_cache_valid | |
| 203 syn keyword ngxDirective contained fastcgi_catch_stderr | |
| 204 syn keyword ngxDirective contained fastcgi_connect_timeout | |
| 205 syn keyword ngxDirective contained fastcgi_force_ranges | |
| 206 syn keyword ngxDirective contained fastcgi_hide_header | |
| 207 syn keyword ngxDirective contained fastcgi_ignore_client_abort | |
| 208 syn keyword ngxDirective contained fastcgi_ignore_headers | |
| 209 syn keyword ngxDirective contained fastcgi_index | |
| 210 syn keyword ngxDirective contained fastcgi_intercept_errors | |
| 211 syn keyword ngxDirective contained fastcgi_keep_conn | |
| 212 syn keyword ngxDirective contained fastcgi_limit_rate | |
| 213 syn keyword ngxDirective contained fastcgi_max_temp_file_size | |
| 214 syn keyword ngxDirective contained fastcgi_next_upstream | |
| 215 syn keyword ngxDirective contained fastcgi_next_upstream_timeout | |
| 216 syn keyword ngxDirective contained fastcgi_next_upstream_tries | |
| 217 syn keyword ngxDirective contained fastcgi_no_cache | |
| 218 syn keyword ngxDirective contained fastcgi_param | |
| 219 syn keyword ngxDirective contained fastcgi_pass_header | |
| 220 syn keyword ngxDirective contained fastcgi_pass_request_body | |
| 221 syn keyword ngxDirective contained fastcgi_pass_request_headers | |
| 222 syn keyword ngxDirective contained fastcgi_read_timeout | |
| 223 syn keyword ngxDirective contained fastcgi_request_buffering | |
| 224 syn keyword ngxDirective contained fastcgi_send_lowat | |
| 225 syn keyword ngxDirective contained fastcgi_send_timeout | |
| 623 | 226 syn keyword ngxDirective contained fastcgi_socket_keepalive |
| 612 | 227 syn keyword ngxDirective contained fastcgi_split_path_info |
| 228 syn keyword ngxDirective contained fastcgi_store | |
| 229 syn keyword ngxDirective contained fastcgi_store_access | |
| 230 syn keyword ngxDirective contained fastcgi_temp_file_write_size | |
| 231 syn keyword ngxDirective contained fastcgi_temp_path | |
| 232 syn keyword ngxDirective contained flv | |
| 233 syn keyword ngxDirective contained geoip_city | |
| 234 syn keyword ngxDirective contained geoip_country | |
| 235 syn keyword ngxDirective contained geoip_org | |
| 236 syn keyword ngxDirective contained geoip_proxy | |
| 237 syn keyword ngxDirective contained geoip_proxy_recursive | |
| 238 syn keyword ngxDirective contained google_perftools_profiles | |
| 239 syn keyword ngxDirective contained grpc_bind | |
| 240 syn keyword ngxDirective contained grpc_buffer_size | |
| 241 syn keyword ngxDirective contained grpc_connect_timeout | |
| 242 syn keyword ngxDirective contained grpc_hide_header | |
| 243 syn keyword ngxDirective contained grpc_ignore_headers | |
| 244 syn keyword ngxDirective contained grpc_intercept_errors | |
| 245 syn keyword ngxDirective contained grpc_next_upstream | |
| 246 syn keyword ngxDirective contained grpc_next_upstream_timeout | |
| 247 syn keyword ngxDirective contained grpc_next_upstream_tries | |
| 248 syn keyword ngxDirective contained grpc_pass | |
| 249 syn keyword ngxDirective contained grpc_pass_header | |
| 250 syn keyword ngxDirective contained grpc_read_timeout | |
| 251 syn keyword ngxDirective contained grpc_send_timeout | |
| 252 syn keyword ngxDirective contained grpc_set_header | |
| 623 | 253 syn keyword ngxDirective contained grpc_socket_keepalive |
| 612 | 254 syn keyword ngxDirective contained grpc_ssl_certificate |
| 255 syn keyword ngxDirective contained grpc_ssl_certificate_key | |
| 256 syn keyword ngxDirective contained grpc_ssl_ciphers | |
| 661 | 257 syn keyword ngxDirective contained grpc_ssl_conf_command |
| 612 | 258 syn keyword ngxDirective contained grpc_ssl_crl |
| 259 syn keyword ngxDirective contained grpc_ssl_name | |
| 260 syn keyword ngxDirective contained grpc_ssl_password_file | |
| 261 syn keyword ngxDirective contained grpc_ssl_protocols | |
| 262 syn keyword ngxDirective contained grpc_ssl_server_name | |
| 263 syn keyword ngxDirective contained grpc_ssl_session_reuse | |
| 264 syn keyword ngxDirective contained grpc_ssl_trusted_certificate | |
| 265 syn keyword ngxDirective contained grpc_ssl_verify | |
| 266 syn keyword ngxDirective contained grpc_ssl_verify_depth | |
| 267 syn keyword ngxDirective contained gunzip | |
| 268 syn keyword ngxDirective contained gunzip_buffers | |
| 269 syn keyword ngxDirective contained gzip | |
| 270 syn keyword ngxDirective contained gzip_buffers | |
| 271 syn keyword ngxDirective contained gzip_comp_level | |
| 272 syn keyword ngxDirective contained gzip_disable | |
| 273 syn keyword ngxDirective contained gzip_hash | |
| 274 syn keyword ngxDirective contained gzip_http_version | |
| 275 syn keyword ngxDirective contained gzip_min_length | |
| 276 syn keyword ngxDirective contained gzip_no_buffer | |
| 277 syn keyword ngxDirective contained gzip_proxied | |
| 278 syn keyword ngxDirective contained gzip_static | |
| 279 syn keyword ngxDirective contained gzip_types | |
| 280 syn keyword ngxDirective contained gzip_vary | |
| 281 syn keyword ngxDirective contained gzip_window | |
| 282 syn keyword ngxDirective contained hash | |
| 726 | 283 syn keyword ngxDirective contained http2 |
| 612 | 284 syn keyword ngxDirective contained http2_body_preread_size |
| 285 syn keyword ngxDirective contained http2_chunk_size | |
| 286 syn keyword ngxDirective contained http2_max_concurrent_pushes | |
| 287 syn keyword ngxDirective contained http2_max_concurrent_streams | |
| 288 syn keyword ngxDirective contained http2_pool_size | |
| 289 syn keyword ngxDirective contained http2_push | |
| 290 syn keyword ngxDirective contained http2_push_preload | |
| 291 syn keyword ngxDirective contained http2_recv_buffer_size | |
| 292 syn keyword ngxDirective contained http2_streams_index_size | |
| 726 | 293 syn keyword ngxDirective contained http3 |
| 294 syn keyword ngxDirective contained http3_hq | |
| 295 syn keyword ngxDirective contained http3_max_concurrent_streams | |
| 296 syn keyword ngxDirective contained http3_stream_buffer_size | |
| 612 | 297 syn keyword ngxDirective contained if_modified_since |
| 298 syn keyword ngxDirective contained ignore_invalid_headers | |
| 299 syn keyword ngxDirective contained image_filter | |
| 300 syn keyword ngxDirective contained image_filter_buffer | |
| 301 syn keyword ngxDirective contained image_filter_interlace | |
| 302 syn keyword ngxDirective contained image_filter_jpeg_quality | |
| 303 syn keyword ngxDirective contained image_filter_sharpen | |
| 304 syn keyword ngxDirective contained image_filter_transparency | |
| 305 syn keyword ngxDirective contained image_filter_webp_quality | |
| 306 syn keyword ngxDirective contained imap_auth | |
| 307 syn keyword ngxDirective contained imap_capabilities | |
| 308 syn keyword ngxDirective contained imap_client_buffer | |
| 309 syn keyword ngxDirective contained index | |
| 310 syn keyword ngxDirective contained iocp_threads | |
| 311 syn keyword ngxDirective contained ip_hash | |
| 312 syn keyword ngxDirective contained js_access | |
| 661 | 313 syn keyword ngxDirective contained js_body_filter |
| 612 | 314 syn keyword ngxDirective contained js_content |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
315 syn keyword ngxDirective contained js_fetch_buffer_size |
| 673 | 316 syn keyword ngxDirective contained js_fetch_ciphers |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
317 syn keyword ngxDirective contained js_fetch_max_response_buffer_size |
| 673 | 318 syn keyword ngxDirective contained js_fetch_protocols |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
319 syn keyword ngxDirective contained js_fetch_timeout |
| 673 | 320 syn keyword ngxDirective contained js_fetch_trusted_certificate |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
321 syn keyword ngxDirective contained js_fetch_verify |
| 673 | 322 syn keyword ngxDirective contained js_fetch_verify_depth |
| 612 | 323 syn keyword ngxDirective contained js_filter |
| 661 | 324 syn keyword ngxDirective contained js_header_filter |
| 642 | 325 syn keyword ngxDirective contained js_import |
| 629 | 326 syn keyword ngxDirective contained js_path |
| 726 | 327 syn keyword ngxDirective contained js_preload_object |
| 612 | 328 syn keyword ngxDirective contained js_preread |
| 329 syn keyword ngxDirective contained js_set | |
| 726 | 330 syn keyword ngxDirective contained js_shared_dict_zone |
| 661 | 331 syn keyword ngxDirective contained js_var |
| 612 | 332 syn keyword ngxDirective contained keepalive |
| 333 syn keyword ngxDirective contained keepalive_disable | |
| 334 syn keyword ngxDirective contained keepalive_requests | |
| 661 | 335 syn keyword ngxDirective contained keepalive_time |
| 612 | 336 syn keyword ngxDirective contained keepalive_timeout |
| 337 syn keyword ngxDirective contained kqueue_changes | |
| 338 syn keyword ngxDirective contained kqueue_events | |
| 339 syn keyword ngxDirective contained large_client_header_buffers | |
| 340 syn keyword ngxDirective contained least_conn | |
| 341 syn keyword ngxDirective contained limit_conn | |
| 642 | 342 syn keyword ngxDirective contained limit_conn_dry_run |
| 612 | 343 syn keyword ngxDirective contained limit_conn_log_level |
| 344 syn keyword ngxDirective contained limit_conn_status | |
| 345 syn keyword ngxDirective contained limit_conn_zone | |
| 346 syn keyword ngxDirective contained limit_rate | |
| 347 syn keyword ngxDirective contained limit_rate_after | |
| 348 syn keyword ngxDirective contained limit_req | |
| 629 | 349 syn keyword ngxDirective contained limit_req_dry_run |
| 612 | 350 syn keyword ngxDirective contained limit_req_log_level |
| 351 syn keyword ngxDirective contained limit_req_status | |
| 352 syn keyword ngxDirective contained limit_req_zone | |
| 353 syn keyword ngxDirective contained lingering_close | |
| 354 syn keyword ngxDirective contained lingering_time | |
| 355 syn keyword ngxDirective contained lingering_timeout | |
| 356 syn keyword ngxDirective contained load_module | |
| 357 syn keyword ngxDirective contained lock_file | |
| 358 syn keyword ngxDirective contained log_format | |
| 359 syn keyword ngxDirective contained log_not_found | |
| 360 syn keyword ngxDirective contained log_subrequest | |
| 361 syn keyword ngxDirective contained map_hash_bucket_size | |
| 362 syn keyword ngxDirective contained map_hash_max_size | |
| 363 syn keyword ngxDirective contained master_process | |
| 661 | 364 syn keyword ngxDirective contained max_errors |
| 612 | 365 syn keyword ngxDirective contained max_ranges |
| 366 syn keyword ngxDirective contained memcached_bind | |
| 367 syn keyword ngxDirective contained memcached_buffer_size | |
| 368 syn keyword ngxDirective contained memcached_connect_timeout | |
| 369 syn keyword ngxDirective contained memcached_gzip_flag | |
| 370 syn keyword ngxDirective contained memcached_next_upstream | |
| 371 syn keyword ngxDirective contained memcached_next_upstream_timeout | |
| 372 syn keyword ngxDirective contained memcached_next_upstream_tries | |
| 373 syn keyword ngxDirective contained memcached_read_timeout | |
| 374 syn keyword ngxDirective contained memcached_send_timeout | |
| 623 | 375 syn keyword ngxDirective contained memcached_socket_keepalive |
| 612 | 376 syn keyword ngxDirective contained merge_slashes |
| 377 syn keyword ngxDirective contained min_delete_depth | |
| 378 syn keyword ngxDirective contained mirror | |
| 379 syn keyword ngxDirective contained mirror_request_body | |
| 380 syn keyword ngxDirective contained modern_browser | |
| 381 syn keyword ngxDirective contained modern_browser_value | |
| 382 syn keyword ngxDirective contained mp4 | |
| 383 syn keyword ngxDirective contained mp4_buffer_size | |
| 623 | 384 syn keyword ngxDirective contained mp4_max_buffer_size |
| 673 | 385 syn keyword ngxDirective contained mp4_start_key_frame |
| 612 | 386 syn keyword ngxDirective contained msie_padding |
| 387 syn keyword ngxDirective contained msie_refresh | |
| 388 syn keyword ngxDirective contained multi_accept | |
| 389 syn keyword ngxDirective contained open_file_cache | |
| 390 syn keyword ngxDirective contained open_file_cache_errors | |
| 391 syn keyword ngxDirective contained open_file_cache_events | |
| 392 syn keyword ngxDirective contained open_file_cache_min_uses | |
| 393 syn keyword ngxDirective contained open_file_cache_valid | |
| 394 syn keyword ngxDirective contained open_log_file_cache | |
| 395 syn keyword ngxDirective contained output_buffers | |
| 396 syn keyword ngxDirective contained override_charset | |
| 397 syn keyword ngxDirective contained pcre_jit | |
| 398 syn keyword ngxDirective contained perl | |
| 399 syn keyword ngxDirective contained perl_modules | |
| 400 syn keyword ngxDirective contained perl_require | |
| 401 syn keyword ngxDirective contained perl_set | |
| 402 syn keyword ngxDirective contained pid | |
| 403 syn keyword ngxDirective contained pop3_auth | |
| 404 syn keyword ngxDirective contained pop3_capabilities | |
| 405 syn keyword ngxDirective contained port_in_redirect | |
| 406 syn keyword ngxDirective contained post_acceptex | |
| 407 syn keyword ngxDirective contained postpone_gzipping | |
| 408 syn keyword ngxDirective contained postpone_output | |
| 409 syn keyword ngxDirective contained preread_buffer_size | |
| 410 syn keyword ngxDirective contained preread_timeout | |
| 411 syn keyword ngxDirective contained protocol | |
| 412 syn keyword ngxDirective contained proxy | |
| 413 syn keyword ngxDirective contained proxy_bind | |
| 414 syn keyword ngxDirective contained proxy_buffer | |
| 415 syn keyword ngxDirective contained proxy_buffer_size | |
| 416 syn keyword ngxDirective contained proxy_buffering | |
| 417 syn keyword ngxDirective contained proxy_buffers | |
| 418 syn keyword ngxDirective contained proxy_busy_buffers_size | |
| 419 syn keyword ngxDirective contained proxy_cache | |
| 420 syn keyword ngxDirective contained proxy_cache_background_update | |
| 421 syn keyword ngxDirective contained proxy_cache_bypass | |
| 422 syn keyword ngxDirective contained proxy_cache_convert_head | |
| 423 syn keyword ngxDirective contained proxy_cache_key | |
| 424 syn keyword ngxDirective contained proxy_cache_lock | |
| 425 syn keyword ngxDirective contained proxy_cache_lock_age | |
| 426 syn keyword ngxDirective contained proxy_cache_lock_timeout | |
| 427 syn keyword ngxDirective contained proxy_cache_max_range_offset | |
| 428 syn keyword ngxDirective contained proxy_cache_methods | |
| 429 syn keyword ngxDirective contained proxy_cache_min_uses | |
| 430 syn keyword ngxDirective contained proxy_cache_path | |
| 431 syn keyword ngxDirective contained proxy_cache_revalidate | |
| 432 syn keyword ngxDirective contained proxy_cache_use_stale | |
| 433 syn keyword ngxDirective contained proxy_cache_valid | |
| 434 syn keyword ngxDirective contained proxy_connect_timeout | |
| 435 syn keyword ngxDirective contained proxy_cookie_domain | |
| 661 | 436 syn keyword ngxDirective contained proxy_cookie_flags |
| 612 | 437 syn keyword ngxDirective contained proxy_cookie_path |
| 438 syn keyword ngxDirective contained proxy_download_rate | |
| 439 syn keyword ngxDirective contained proxy_force_ranges | |
| 673 | 440 syn keyword ngxDirective contained proxy_half_close |
| 612 | 441 syn keyword ngxDirective contained proxy_headers_hash_bucket_size |
| 442 syn keyword ngxDirective contained proxy_headers_hash_max_size | |
| 443 syn keyword ngxDirective contained proxy_hide_header | |
| 444 syn keyword ngxDirective contained proxy_http_version | |
| 445 syn keyword ngxDirective contained proxy_ignore_client_abort | |
| 446 syn keyword ngxDirective contained proxy_ignore_headers | |
| 447 syn keyword ngxDirective contained proxy_intercept_errors | |
| 448 syn keyword ngxDirective contained proxy_limit_rate | |
| 449 syn keyword ngxDirective contained proxy_max_temp_file_size | |
| 450 syn keyword ngxDirective contained proxy_method | |
| 451 syn keyword ngxDirective contained proxy_next_upstream | |
| 452 syn keyword ngxDirective contained proxy_next_upstream_timeout | |
| 453 syn keyword ngxDirective contained proxy_next_upstream_tries | |
| 454 syn keyword ngxDirective contained proxy_no_cache | |
| 455 syn keyword ngxDirective contained proxy_pass_error_message | |
| 456 syn keyword ngxDirective contained proxy_pass_header | |
| 457 syn keyword ngxDirective contained proxy_pass_request_body | |
| 458 syn keyword ngxDirective contained proxy_pass_request_headers | |
| 459 syn keyword ngxDirective contained proxy_protocol | |
| 460 syn keyword ngxDirective contained proxy_protocol_timeout | |
| 461 syn keyword ngxDirective contained proxy_read_timeout | |
| 462 syn keyword ngxDirective contained proxy_redirect | |
| 463 syn keyword ngxDirective contained proxy_request_buffering | |
| 623 | 464 syn keyword ngxDirective contained proxy_requests |
| 612 | 465 syn keyword ngxDirective contained proxy_responses |
| 466 syn keyword ngxDirective contained proxy_send_lowat | |
| 467 syn keyword ngxDirective contained proxy_send_timeout | |
| 468 syn keyword ngxDirective contained proxy_set_body | |
| 469 syn keyword ngxDirective contained proxy_set_header | |
| 661 | 470 syn keyword ngxDirective contained proxy_smtp_auth |
| 623 | 471 syn keyword ngxDirective contained proxy_socket_keepalive |
| 612 | 472 syn keyword ngxDirective contained proxy_ssl |
| 473 syn keyword ngxDirective contained proxy_ssl_certificate | |
| 474 syn keyword ngxDirective contained proxy_ssl_certificate_key | |
| 475 syn keyword ngxDirective contained proxy_ssl_ciphers | |
| 661 | 476 syn keyword ngxDirective contained proxy_ssl_conf_command |
| 612 | 477 syn keyword ngxDirective contained proxy_ssl_crl |
| 478 syn keyword ngxDirective contained proxy_ssl_name | |
| 479 syn keyword ngxDirective contained proxy_ssl_password_file | |
| 480 syn keyword ngxDirective contained proxy_ssl_protocols | |
| 481 syn keyword ngxDirective contained proxy_ssl_server_name | |
| 482 syn keyword ngxDirective contained proxy_ssl_session_reuse | |
| 483 syn keyword ngxDirective contained proxy_ssl_trusted_certificate | |
| 484 syn keyword ngxDirective contained proxy_ssl_verify | |
| 485 syn keyword ngxDirective contained proxy_ssl_verify_depth | |
| 486 syn keyword ngxDirective contained proxy_store | |
| 487 syn keyword ngxDirective contained proxy_store_access | |
| 488 syn keyword ngxDirective contained proxy_temp_file_write_size | |
| 489 syn keyword ngxDirective contained proxy_temp_path | |
| 490 syn keyword ngxDirective contained proxy_timeout | |
| 491 syn keyword ngxDirective contained proxy_upload_rate | |
| 726 | 492 syn keyword ngxDirective contained quic_active_connection_id_limit |
| 493 syn keyword ngxDirective contained quic_bpf | |
| 494 syn keyword ngxDirective contained quic_gso | |
| 495 syn keyword ngxDirective contained quic_host_key | |
| 496 syn keyword ngxDirective contained quic_retry | |
| 623 | 497 syn keyword ngxDirective contained random |
| 612 | 498 syn keyword ngxDirective contained random_index |
| 499 syn keyword ngxDirective contained read_ahead | |
| 500 syn keyword ngxDirective contained real_ip_header | |
| 501 syn keyword ngxDirective contained real_ip_recursive | |
| 502 syn keyword ngxDirective contained recursive_error_pages | |
| 503 syn keyword ngxDirective contained referer_hash_bucket_size | |
| 504 syn keyword ngxDirective contained referer_hash_max_size | |
| 505 syn keyword ngxDirective contained request_pool_size | |
| 506 syn keyword ngxDirective contained reset_timedout_connection | |
| 507 syn keyword ngxDirective contained resolver | |
| 508 syn keyword ngxDirective contained resolver_timeout | |
| 509 syn keyword ngxDirective contained rewrite_log | |
| 510 syn keyword ngxDirective contained satisfy | |
| 511 syn keyword ngxDirective contained scgi_bind | |
| 512 syn keyword ngxDirective contained scgi_buffer_size | |
| 513 syn keyword ngxDirective contained scgi_buffering | |
| 514 syn keyword ngxDirective contained scgi_buffers | |
| 515 syn keyword ngxDirective contained scgi_busy_buffers_size | |
| 516 syn keyword ngxDirective contained scgi_cache | |
| 517 syn keyword ngxDirective contained scgi_cache_background_update | |
| 518 syn keyword ngxDirective contained scgi_cache_bypass | |
| 519 syn keyword ngxDirective contained scgi_cache_key | |
| 520 syn keyword ngxDirective contained scgi_cache_lock | |
| 521 syn keyword ngxDirective contained scgi_cache_lock_age | |
| 522 syn keyword ngxDirective contained scgi_cache_lock_timeout | |
| 523 syn keyword ngxDirective contained scgi_cache_max_range_offset | |
| 524 syn keyword ngxDirective contained scgi_cache_methods | |
| 525 syn keyword ngxDirective contained scgi_cache_min_uses | |
| 526 syn keyword ngxDirective contained scgi_cache_path | |
| 527 syn keyword ngxDirective contained scgi_cache_revalidate | |
| 528 syn keyword ngxDirective contained scgi_cache_use_stale | |
| 529 syn keyword ngxDirective contained scgi_cache_valid | |
| 530 syn keyword ngxDirective contained scgi_connect_timeout | |
| 531 syn keyword ngxDirective contained scgi_force_ranges | |
| 532 syn keyword ngxDirective contained scgi_hide_header | |
| 533 syn keyword ngxDirective contained scgi_ignore_client_abort | |
| 534 syn keyword ngxDirective contained scgi_ignore_headers | |
| 535 syn keyword ngxDirective contained scgi_intercept_errors | |
| 536 syn keyword ngxDirective contained scgi_limit_rate | |
| 537 syn keyword ngxDirective contained scgi_max_temp_file_size | |
| 538 syn keyword ngxDirective contained scgi_next_upstream | |
| 539 syn keyword ngxDirective contained scgi_next_upstream_timeout | |
| 540 syn keyword ngxDirective contained scgi_next_upstream_tries | |
| 541 syn keyword ngxDirective contained scgi_no_cache | |
| 542 syn keyword ngxDirective contained scgi_param | |
| 543 syn keyword ngxDirective contained scgi_pass_header | |
| 544 syn keyword ngxDirective contained scgi_pass_request_body | |
| 545 syn keyword ngxDirective contained scgi_pass_request_headers | |
| 546 syn keyword ngxDirective contained scgi_read_timeout | |
| 547 syn keyword ngxDirective contained scgi_request_buffering | |
| 548 syn keyword ngxDirective contained scgi_send_timeout | |
| 623 | 549 syn keyword ngxDirective contained scgi_socket_keepalive |
| 612 | 550 syn keyword ngxDirective contained scgi_store |
| 551 syn keyword ngxDirective contained scgi_store_access | |
| 552 syn keyword ngxDirective contained scgi_temp_file_write_size | |
| 553 syn keyword ngxDirective contained scgi_temp_path | |
| 554 syn keyword ngxDirective contained secure_link | |
| 555 syn keyword ngxDirective contained secure_link_md5 | |
| 556 syn keyword ngxDirective contained secure_link_secret | |
| 557 syn keyword ngxDirective contained send_lowat | |
| 558 syn keyword ngxDirective contained send_timeout | |
| 559 syn keyword ngxDirective contained sendfile | |
| 560 syn keyword ngxDirective contained sendfile_max_chunk | |
| 561 syn keyword ngxDirective contained server_name_in_redirect | |
| 562 syn keyword ngxDirective contained server_names_hash_bucket_size | |
| 563 syn keyword ngxDirective contained server_names_hash_max_size | |
| 564 syn keyword ngxDirective contained server_tokens | |
| 565 syn keyword ngxDirective contained set_real_ip_from | |
| 566 syn keyword ngxDirective contained slice | |
| 567 syn keyword ngxDirective contained smtp_auth | |
| 568 syn keyword ngxDirective contained smtp_capabilities | |
| 569 syn keyword ngxDirective contained smtp_client_buffer | |
| 570 syn keyword ngxDirective contained smtp_greeting_delay | |
| 571 syn keyword ngxDirective contained source_charset | |
| 572 syn keyword ngxDirective contained ssi | |
| 573 syn keyword ngxDirective contained ssi_ignore_recycled_buffers | |
| 574 syn keyword ngxDirective contained ssi_last_modified | |
| 575 syn keyword ngxDirective contained ssi_min_file_chunk | |
| 576 syn keyword ngxDirective contained ssi_silent_errors | |
| 577 syn keyword ngxDirective contained ssi_types | |
| 578 syn keyword ngxDirective contained ssi_value_length | |
| 673 | 579 syn keyword ngxDirective contained ssl_alpn |
| 612 | 580 syn keyword ngxDirective contained ssl_buffer_size |
| 581 syn keyword ngxDirective contained ssl_certificate | |
| 582 syn keyword ngxDirective contained ssl_certificate_key | |
| 583 syn keyword ngxDirective contained ssl_ciphers | |
| 584 syn keyword ngxDirective contained ssl_client_certificate | |
| 661 | 585 syn keyword ngxDirective contained ssl_conf_command |
| 612 | 586 syn keyword ngxDirective contained ssl_crl |
| 587 syn keyword ngxDirective contained ssl_dhparam | |
| 623 | 588 syn keyword ngxDirective contained ssl_early_data |
| 612 | 589 syn keyword ngxDirective contained ssl_ecdh_curve |
| 590 syn keyword ngxDirective contained ssl_engine | |
| 591 syn keyword ngxDirective contained ssl_handshake_timeout | |
| 642 | 592 syn keyword ngxDirective contained ssl_ocsp |
| 593 syn keyword ngxDirective contained ssl_ocsp_cache | |
| 594 syn keyword ngxDirective contained ssl_ocsp_responder | |
| 612 | 595 syn keyword ngxDirective contained ssl_password_file |
| 596 syn keyword ngxDirective contained ssl_prefer_server_ciphers | |
| 597 syn keyword ngxDirective contained ssl_preread | |
| 598 syn keyword ngxDirective contained ssl_protocols | |
| 661 | 599 syn keyword ngxDirective contained ssl_reject_handshake |
| 612 | 600 syn keyword ngxDirective contained ssl_session_cache |
| 601 syn keyword ngxDirective contained ssl_session_ticket_key | |
| 602 syn keyword ngxDirective contained ssl_session_tickets | |
| 603 syn keyword ngxDirective contained ssl_session_timeout | |
| 604 syn keyword ngxDirective contained ssl_stapling | |
| 605 syn keyword ngxDirective contained ssl_stapling_file | |
| 606 syn keyword ngxDirective contained ssl_stapling_responder | |
| 607 syn keyword ngxDirective contained ssl_stapling_verify | |
| 608 syn keyword ngxDirective contained ssl_trusted_certificate | |
| 609 syn keyword ngxDirective contained ssl_verify_client | |
| 610 syn keyword ngxDirective contained ssl_verify_depth | |
| 611 syn keyword ngxDirective contained starttls | |
| 612 syn keyword ngxDirective contained stub_status | |
| 613 syn keyword ngxDirective contained sub_filter | |
| 614 syn keyword ngxDirective contained sub_filter_last_modified | |
| 615 syn keyword ngxDirective contained sub_filter_once | |
| 616 syn keyword ngxDirective contained sub_filter_types | |
| 617 syn keyword ngxDirective contained subrequest_output_buffer_size | |
| 618 syn keyword ngxDirective contained tcp_nodelay | |
| 619 syn keyword ngxDirective contained tcp_nopush | |
| 620 syn keyword ngxDirective contained thread_pool | |
| 621 syn keyword ngxDirective contained timeout | |
| 622 syn keyword ngxDirective contained timer_resolution | |
| 623 syn keyword ngxDirective contained types_hash_bucket_size | |
| 624 syn keyword ngxDirective contained types_hash_max_size | |
| 625 syn keyword ngxDirective contained underscores_in_headers | |
| 626 syn keyword ngxDirective contained uninitialized_variable_warn | |
| 627 syn keyword ngxDirective contained use | |
| 628 syn keyword ngxDirective contained user | |
| 629 syn keyword ngxDirective contained userid | |
| 630 syn keyword ngxDirective contained userid_domain | |
| 631 syn keyword ngxDirective contained userid_expires | |
| 661 | 632 syn keyword ngxDirective contained userid_flags |
| 612 | 633 syn keyword ngxDirective contained userid_mark |
| 634 syn keyword ngxDirective contained userid_name | |
| 635 syn keyword ngxDirective contained userid_p3p | |
| 636 syn keyword ngxDirective contained userid_path | |
| 637 syn keyword ngxDirective contained userid_service | |
| 638 syn keyword ngxDirective contained uwsgi_bind | |
| 639 syn keyword ngxDirective contained uwsgi_buffer_size | |
| 640 syn keyword ngxDirective contained uwsgi_buffering | |
| 641 syn keyword ngxDirective contained uwsgi_buffers | |
| 642 syn keyword ngxDirective contained uwsgi_busy_buffers_size | |
| 643 syn keyword ngxDirective contained uwsgi_cache | |
| 644 syn keyword ngxDirective contained uwsgi_cache_background_update | |
| 645 syn keyword ngxDirective contained uwsgi_cache_bypass | |
| 646 syn keyword ngxDirective contained uwsgi_cache_key | |
| 647 syn keyword ngxDirective contained uwsgi_cache_lock | |
| 648 syn keyword ngxDirective contained uwsgi_cache_lock_age | |
| 649 syn keyword ngxDirective contained uwsgi_cache_lock_timeout | |
| 650 syn keyword ngxDirective contained uwsgi_cache_max_range_offset | |
| 651 syn keyword ngxDirective contained uwsgi_cache_methods | |
| 652 syn keyword ngxDirective contained uwsgi_cache_min_uses | |
| 653 syn keyword ngxDirective contained uwsgi_cache_path | |
| 654 syn keyword ngxDirective contained uwsgi_cache_revalidate | |
| 655 syn keyword ngxDirective contained uwsgi_cache_use_stale | |
| 656 syn keyword ngxDirective contained uwsgi_cache_valid | |
| 657 syn keyword ngxDirective contained uwsgi_connect_timeout | |
| 658 syn keyword ngxDirective contained uwsgi_force_ranges | |
| 659 syn keyword ngxDirective contained uwsgi_hide_header | |
| 660 syn keyword ngxDirective contained uwsgi_ignore_client_abort | |
| 661 syn keyword ngxDirective contained uwsgi_ignore_headers | |
| 662 syn keyword ngxDirective contained uwsgi_intercept_errors | |
| 663 syn keyword ngxDirective contained uwsgi_limit_rate | |
| 664 syn keyword ngxDirective contained uwsgi_max_temp_file_size | |
| 665 syn keyword ngxDirective contained uwsgi_modifier1 | |
| 666 syn keyword ngxDirective contained uwsgi_modifier2 | |
| 667 syn keyword ngxDirective contained uwsgi_next_upstream | |
| 668 syn keyword ngxDirective contained uwsgi_next_upstream_timeout | |
| 669 syn keyword ngxDirective contained uwsgi_next_upstream_tries | |
| 670 syn keyword ngxDirective contained uwsgi_no_cache | |
| 671 syn keyword ngxDirective contained uwsgi_param | |
| 672 syn keyword ngxDirective contained uwsgi_pass_header | |
| 673 syn keyword ngxDirective contained uwsgi_pass_request_body | |
| 674 syn keyword ngxDirective contained uwsgi_pass_request_headers | |
| 675 syn keyword ngxDirective contained uwsgi_read_timeout | |
| 676 syn keyword ngxDirective contained uwsgi_request_buffering | |
| 677 syn keyword ngxDirective contained uwsgi_send_timeout | |
| 623 | 678 syn keyword ngxDirective contained uwsgi_socket_keepalive |
| 612 | 679 syn keyword ngxDirective contained uwsgi_ssl_certificate |
| 680 syn keyword ngxDirective contained uwsgi_ssl_certificate_key | |
| 681 syn keyword ngxDirective contained uwsgi_ssl_ciphers | |
| 661 | 682 syn keyword ngxDirective contained uwsgi_ssl_conf_command |
| 612 | 683 syn keyword ngxDirective contained uwsgi_ssl_crl |
| 684 syn keyword ngxDirective contained uwsgi_ssl_name | |
| 685 syn keyword ngxDirective contained uwsgi_ssl_password_file | |
| 686 syn keyword ngxDirective contained uwsgi_ssl_protocols | |
| 687 syn keyword ngxDirective contained uwsgi_ssl_server_name | |
| 688 syn keyword ngxDirective contained uwsgi_ssl_session_reuse | |
| 689 syn keyword ngxDirective contained uwsgi_ssl_trusted_certificate | |
| 690 syn keyword ngxDirective contained uwsgi_ssl_verify | |
| 691 syn keyword ngxDirective contained uwsgi_ssl_verify_depth | |
| 692 syn keyword ngxDirective contained uwsgi_store | |
| 693 syn keyword ngxDirective contained uwsgi_store_access | |
| 694 syn keyword ngxDirective contained uwsgi_string | |
| 695 syn keyword ngxDirective contained uwsgi_temp_file_write_size | |
| 696 syn keyword ngxDirective contained uwsgi_temp_path | |
| 697 syn keyword ngxDirective contained valid_referers | |
| 698 syn keyword ngxDirective contained variables_hash_bucket_size | |
| 699 syn keyword ngxDirective contained variables_hash_max_size | |
| 700 syn keyword ngxDirective contained worker_aio_requests | |
| 701 syn keyword ngxDirective contained worker_connections | |
| 702 syn keyword ngxDirective contained worker_cpu_affinity | |
| 703 syn keyword ngxDirective contained worker_priority | |
| 704 syn keyword ngxDirective contained worker_processes | |
| 705 syn keyword ngxDirective contained worker_rlimit_core | |
| 706 syn keyword ngxDirective contained worker_rlimit_nofile | |
| 707 syn keyword ngxDirective contained worker_shutdown_timeout | |
| 708 syn keyword ngxDirective contained working_directory | |
| 709 syn keyword ngxDirective contained xclient | |
| 710 syn keyword ngxDirective contained xml_entities | |
| 711 syn keyword ngxDirective contained xslt_last_modified | |
| 712 syn keyword ngxDirective contained xslt_param | |
| 713 syn keyword ngxDirective contained xslt_string_param | |
| 714 syn keyword ngxDirective contained xslt_stylesheet | |
| 715 syn keyword ngxDirective contained xslt_types | |
| 716 syn keyword ngxDirective contained zone | |
| 726 | 717 |
| 718 " nginx-plus commercial extensions directives | |
| 719 | |
| 720 syn keyword ngxDirectiveBlock contained match | |
| 721 syn keyword ngxDirectiveBlock contained otel_exporter | |
| 722 | |
| 723 syn keyword ngxDirective contained api | |
| 724 syn keyword ngxDirective contained auth_jwt | |
| 725 syn keyword ngxDirective contained auth_jwt_claim_set | |
| 726 syn keyword ngxDirective contained auth_jwt_header_set | |
| 727 syn keyword ngxDirective contained auth_jwt_key_cache | |
| 728 syn keyword ngxDirective contained auth_jwt_key_file | |
| 729 syn keyword ngxDirective contained auth_jwt_key_request | |
| 730 syn keyword ngxDirective contained auth_jwt_leeway | |
| 731 syn keyword ngxDirective contained auth_jwt_require | |
| 732 syn keyword ngxDirective contained auth_jwt_type | |
| 733 syn keyword ngxDirective contained f4f | |
| 734 syn keyword ngxDirective contained f4f_buffer_size | |
| 735 syn keyword ngxDirective contained fastcgi_cache_purge | |
| 736 syn keyword ngxDirective contained health_check | |
| 737 syn keyword ngxDirective contained health_check_timeout | |
| 738 syn keyword ngxDirective contained hls | |
| 739 syn keyword ngxDirective contained hls_buffers | |
| 740 syn keyword ngxDirective contained hls_forward_args | |
| 741 syn keyword ngxDirective contained hls_fragment | |
| 742 syn keyword ngxDirective contained hls_mp4_buffer_size | |
| 743 syn keyword ngxDirective contained hls_mp4_max_buffer_size | |
| 744 syn keyword ngxDirective contained internal_redirect | |
| 745 syn keyword ngxDirective contained keyval | |
| 746 syn keyword ngxDirective contained keyval_zone | |
| 747 syn keyword ngxDirective contained least_time | |
| 748 syn keyword ngxDirective contained mp4_limit_rate | |
| 749 syn keyword ngxDirective contained mp4_limit_rate_after | |
| 750 syn keyword ngxDirective contained mqtt | |
| 751 syn keyword ngxDirective contained mqtt_preread | |
| 752 syn keyword ngxDirective contained mqtt_rewrite_buffer_size | |
| 753 syn keyword ngxDirective contained mqtt_set_connect | |
| 754 syn keyword ngxDirective contained ntlm | |
| 755 syn keyword ngxDirective contained otel_service_name | |
| 756 syn keyword ngxDirective contained otel_span_attr | |
| 757 syn keyword ngxDirective contained otel_span_name | |
| 758 syn keyword ngxDirective contained otel_trace | |
| 759 syn keyword ngxDirective contained otel_trace_context | |
| 760 syn keyword ngxDirective contained proxy_cache_purge | |
| 761 syn keyword ngxDirective contained proxy_session_drop | |
| 762 syn keyword ngxDirective contained queue | |
| 763 syn keyword ngxDirective contained scgi_cache_purge | |
| 764 syn keyword ngxDirective contained session_log | |
| 765 syn keyword ngxDirective contained session_log_format | |
| 766 syn keyword ngxDirective contained session_log_zone | |
| 767 syn keyword ngxDirective contained state | |
| 768 syn keyword ngxDirective contained status | |
| 769 syn keyword ngxDirective contained status_format | |
| 770 syn keyword ngxDirective contained status_zone | |
| 771 syn keyword ngxDirective contained sticky | |
| 772 syn keyword ngxDirective contained uwsgi_cache_purge | |
| 623 | 773 syn keyword ngxDirective contained zone_sync |
| 774 syn keyword ngxDirective contained zone_sync_buffers | |
| 775 syn keyword ngxDirective contained zone_sync_connect_retry_interval | |
| 776 syn keyword ngxDirective contained zone_sync_connect_timeout | |
| 777 syn keyword ngxDirective contained zone_sync_interval | |
| 778 syn keyword ngxDirective contained zone_sync_recv_buffer_size | |
| 779 syn keyword ngxDirective contained zone_sync_server | |
| 780 syn keyword ngxDirective contained zone_sync_ssl | |
| 781 syn keyword ngxDirective contained zone_sync_ssl_certificate | |
| 782 syn keyword ngxDirective contained zone_sync_ssl_certificate_key | |
| 783 syn keyword ngxDirective contained zone_sync_ssl_ciphers | |
| 661 | 784 syn keyword ngxDirective contained zone_sync_ssl_conf_command |
| 623 | 785 syn keyword ngxDirective contained zone_sync_ssl_crl |
| 786 syn keyword ngxDirective contained zone_sync_ssl_name | |
| 787 syn keyword ngxDirective contained zone_sync_ssl_password_file | |
| 788 syn keyword ngxDirective contained zone_sync_ssl_protocols | |
| 789 syn keyword ngxDirective contained zone_sync_ssl_server_name | |
| 790 syn keyword ngxDirective contained zone_sync_ssl_trusted_certificate | |
| 791 syn keyword ngxDirective contained zone_sync_ssl_verify | |
| 792 syn keyword ngxDirective contained zone_sync_ssl_verify_depth | |
| 793 syn keyword ngxDirective contained zone_sync_timeout | |
| 596 | 794 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
795 " 3rd party modules list taken from |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
796 " https://github.com/freebsd/freebsd-ports/blob/main/www/nginx-devel/Makefile.extmod |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
797 " ---------------------------------------------------------------------------------- |
| 612 | 798 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
799 " https://github.com/msva/nginx_ajp_module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
800 syn keyword ngxDirectiveThirdParty contained ajp_buffer_size |
| 642 | 801 syn keyword ngxDirectiveThirdParty contained ajp_buffers |
| 612 | 802 syn keyword ngxDirectiveThirdParty contained ajp_busy_buffers_size |
| 803 syn keyword ngxDirectiveThirdParty contained ajp_cache | |
| 804 syn keyword ngxDirectiveThirdParty contained ajp_cache_key | |
| 805 syn keyword ngxDirectiveThirdParty contained ajp_cache_lock | |
| 806 syn keyword ngxDirectiveThirdParty contained ajp_cache_lock_timeout | |
| 807 syn keyword ngxDirectiveThirdParty contained ajp_cache_methods | |
| 808 syn keyword ngxDirectiveThirdParty contained ajp_cache_min_uses | |
| 809 syn keyword ngxDirectiveThirdParty contained ajp_cache_path | |
| 810 syn keyword ngxDirectiveThirdParty contained ajp_cache_use_stale | |
| 811 syn keyword ngxDirectiveThirdParty contained ajp_cache_valid | |
| 812 syn keyword ngxDirectiveThirdParty contained ajp_connect_timeout | |
| 813 syn keyword ngxDirectiveThirdParty contained ajp_header_packet_buffer_size | |
| 814 syn keyword ngxDirectiveThirdParty contained ajp_hide_header | |
| 815 syn keyword ngxDirectiveThirdParty contained ajp_ignore_client_abort | |
| 816 syn keyword ngxDirectiveThirdParty contained ajp_ignore_headers | |
| 817 syn keyword ngxDirectiveThirdParty contained ajp_intercept_errors | |
| 818 syn keyword ngxDirectiveThirdParty contained ajp_keep_conn | |
| 819 syn keyword ngxDirectiveThirdParty contained ajp_max_data_packet_size | |
| 820 syn keyword ngxDirectiveThirdParty contained ajp_max_temp_file_size | |
| 821 syn keyword ngxDirectiveThirdParty contained ajp_next_upstream | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
822 syn keyword ngxDirectiveThirdParty contained ajp_param |
| 612 | 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 | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
828 syn keyword ngxDirectiveThirdParty contained ajp_script_url |
| 642 | 829 syn keyword ngxDirectiveThirdParty contained ajp_secret |
| 612 | 830 syn keyword ngxDirectiveThirdParty contained ajp_send_lowat |
| 831 syn keyword ngxDirectiveThirdParty contained ajp_send_timeout | |
| 832 syn keyword ngxDirectiveThirdParty contained ajp_store | |
| 833 syn keyword ngxDirectiveThirdParty contained ajp_store_access | |
| 834 syn keyword ngxDirectiveThirdParty contained ajp_temp_file_write_size | |
| 835 syn keyword ngxDirectiveThirdParty contained ajp_temp_path | |
| 836 syn keyword ngxDirectiveThirdParty contained ajp_upstream_fail_timeout | |
| 837 syn keyword ngxDirectiveThirdParty contained ajp_upstream_max_fails | |
| 596 | 838 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
839 " https://github.com/openresty/array-var-nginx-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
840 syn keyword ngxDirectiveThirdParty contained array_join |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
841 syn keyword ngxDirectiveThirdParty contained array_map |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
842 syn keyword ngxDirectiveThirdParty contained array_map_op |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
843 syn keyword ngxDirectiveThirdParty contained array_split |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
844 |
| 612 | 845 " https://github.com/anomalizer/ngx_aws_auth |
| 846 syn keyword ngxDirectiveThirdParty contained aws_access_key | |
| 847 syn keyword ngxDirectiveThirdParty contained aws_endpoint | |
| 848 syn keyword ngxDirectiveThirdParty contained aws_key_scope | |
| 849 syn keyword ngxDirectiveThirdParty contained aws_s3_bucket | |
| 850 syn keyword ngxDirectiveThirdParty contained aws_sign | |
| 851 syn keyword ngxDirectiveThirdParty contained aws_signing_key | |
| 596 | 852 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
853 " https://github.com/google/ngx_brotli |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
854 syn keyword ngxDirectiveThirdParty contained brotli |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
855 syn keyword ngxDirectiveThirdParty contained brotli_buffers |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
856 syn keyword ngxDirectiveThirdParty contained brotli_comp_level |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
857 syn keyword ngxDirectiveThirdParty contained brotli_min_length |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
858 syn keyword ngxDirectiveThirdParty contained brotli_static |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
859 syn keyword ngxDirectiveThirdParty contained brotli_types |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
860 syn keyword ngxDirectiveThirdParty contained brotli_window |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
861 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
862 " https://github.com/torden/ngx_cache_purge |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
863 syn keyword ngxDirectiveThirdParty contained cache_purge_response_type |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
864 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
865 " https://github.com/AirisX/nginx_cookie_flag_module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
866 syn keyword ngxDirectiveThirdParty contained set_cookie_flag |
| 642 | 867 |
| 612 | 868 " https://github.com/grahamedgecombe/nginx-ct |
| 869 syn keyword ngxDirectiveThirdParty contained ssl_ct | |
| 870 syn keyword ngxDirectiveThirdParty contained ssl_ct_static_scts | |
| 596 | 871 |
| 612 | 872 " https://github.com/openresty/echo-nginx-module |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
873 syn keyword ngxDirectiveThirdParty contained echo |
| 612 | 874 syn keyword ngxDirectiveThirdParty contained echo_abort_parent |
| 875 syn keyword ngxDirectiveThirdParty contained echo_after_body | |
| 876 syn keyword ngxDirectiveThirdParty contained echo_before_body | |
| 877 syn keyword ngxDirectiveThirdParty contained echo_blocking_sleep | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
878 syn keyword ngxDirectiveThirdParty contained echo_duplicate |
| 612 | 879 syn keyword ngxDirectiveThirdParty contained echo_end |
| 880 syn keyword ngxDirectiveThirdParty contained echo_exec | |
| 881 syn keyword ngxDirectiveThirdParty contained echo_flush | |
| 882 syn keyword ngxDirectiveThirdParty contained echo_foreach_split | |
| 883 syn keyword ngxDirectiveThirdParty contained echo_location | |
| 884 syn keyword ngxDirectiveThirdParty contained echo_location_async | |
| 885 syn keyword ngxDirectiveThirdParty contained echo_read_request_body | |
| 886 syn keyword ngxDirectiveThirdParty contained echo_request_body | |
| 887 syn keyword ngxDirectiveThirdParty contained echo_reset_timer | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
888 syn keyword ngxDirectiveThirdParty contained echo_sleep |
| 612 | 889 syn keyword ngxDirectiveThirdParty contained echo_status |
| 890 syn keyword ngxDirectiveThirdParty contained echo_subrequest | |
| 891 syn keyword ngxDirectiveThirdParty contained echo_subrequest_async | |
| 596 | 892 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
893 " https://github.com/openresty/drizzle-nginx-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
894 syn keyword ngxDirectiveThirdParty contained drizzle_buffer_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
895 syn keyword ngxDirectiveThirdParty contained drizzle_connect_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
896 syn keyword ngxDirectiveThirdParty contained drizzle_dbname |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
897 syn keyword ngxDirectiveThirdParty contained drizzle_keepalive |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
898 syn keyword ngxDirectiveThirdParty contained drizzle_module_header |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
899 syn keyword ngxDirectiveThirdParty contained drizzle_pass |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
900 syn keyword ngxDirectiveThirdParty contained drizzle_query |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
901 syn keyword ngxDirectiveThirdParty contained drizzle_recv_cols_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
902 syn keyword ngxDirectiveThirdParty contained drizzle_recv_rows_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
903 syn keyword ngxDirectiveThirdParty contained drizzle_send_query_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
904 syn keyword ngxDirectiveThirdParty contained drizzle_server |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
905 syn keyword ngxDirectiveThirdParty contained drizzle_status |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
906 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
907 " https://github.com/ZigzagAK/ngx_dynamic_upstream |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
908 syn keyword ngxDirectiveThirdParty contained dns_add_down |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
909 syn keyword ngxDirectiveThirdParty contained dns_ipv6 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
910 syn keyword ngxDirectiveThirdParty contained dns_update |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
911 syn keyword ngxDirectiveThirdParty contained dynamic_state_file |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
912 syn keyword ngxDirectiveThirdParty contained dynamic_upstream |
| 612 | 913 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
914 " https://github.com/openresty/encrypted-session-nginx-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
915 syn keyword ngxDirectiveThirdParty contained encrypted_session_expires |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
916 syn keyword ngxDirectiveThirdParty contained encrypted_session_iv |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
917 syn keyword ngxDirectiveThirdParty contained encrypted_session_key |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
918 syn keyword ngxDirectiveThirdParty contained set_decrypt_session |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
919 syn keyword ngxDirectiveThirdParty contained set_encrypt_session |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
920 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
921 " https://github.com/calio/form-input-nginx-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
922 syn keyword ngxDirectiveThirdParty contained set_form_input |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
923 syn keyword ngxDirectiveThirdParty contained set_form_input_multi |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
924 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
925 " https://github.com/nieoding/nginx-gridfs |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
926 syn keyword ngxDirectiveThirdParty contained gridfs |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
927 syn keyword ngxDirectiveThirdParty contained mongo |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
928 |
| 612 | 929 " https://github.com/openresty/headers-more-nginx-module |
| 930 syn keyword ngxDirectiveThirdParty contained more_clear_headers | |
| 931 syn keyword ngxDirectiveThirdParty contained more_clear_input_headers | |
| 932 syn keyword ngxDirectiveThirdParty contained more_set_headers | |
| 933 syn keyword ngxDirectiveThirdParty contained more_set_input_headers | |
| 596 | 934 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
935 " https://github.com/dvershinin/nginx_accept_language_module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
936 syn keyword ngxDirectiveThirdParty contained set_from_accept_language |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
937 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
938 " https://github.com/atomx/nginx-http-auth-digest |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
939 syn keyword ngxDirectiveThirdParty contained auth_digest |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
940 syn keyword ngxDirectiveThirdParty contained auth_digest_drop_time |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
941 syn keyword ngxDirectiveThirdParty contained auth_digest_evasion_time |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
942 syn keyword ngxDirectiveThirdParty contained auth_digest_expires |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
943 syn keyword ngxDirectiveThirdParty contained auth_digest_maxtries |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
944 syn keyword ngxDirectiveThirdParty contained auth_digest_replays |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
945 syn keyword ngxDirectiveThirdParty contained auth_digest_shm_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
946 syn keyword ngxDirectiveThirdParty contained auth_digest_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
947 syn keyword ngxDirectiveThirdParty contained auth_digest_user_file |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
948 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
949 " https://github.com/stnoonan/spnego-http-auth-nginx-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
950 syn keyword ngxDirectiveThirdParty contained auth_gss |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
951 syn keyword ngxDirectiveThirdParty contained auth_gss_allow_basic_fallback |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
952 syn keyword ngxDirectiveThirdParty contained auth_gss_authorized_principal |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
953 syn keyword ngxDirectiveThirdParty contained auth_gss_authorized_principal_regex |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
954 syn keyword ngxDirectiveThirdParty contained auth_gss_constrained_delegation |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
955 syn keyword ngxDirectiveThirdParty contained auth_gss_delegate_credentials |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
956 syn keyword ngxDirectiveThirdParty contained auth_gss_force_realm |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
957 syn keyword ngxDirectiveThirdParty contained auth_gss_format_full |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
958 syn keyword ngxDirectiveThirdParty contained auth_gss_keytab |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
959 syn keyword ngxDirectiveThirdParty contained auth_gss_map_to_local |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
960 syn keyword ngxDirectiveThirdParty contained auth_gss_realm |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
961 syn keyword ngxDirectiveThirdParty contained auth_gss_service_ccache |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
962 syn keyword ngxDirectiveThirdParty contained auth_gss_service_name |
| 726 | 963 syn keyword ngxDirectiveThirdParty contained auth_gss_zone_name |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
964 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
965 " https://github.com/kvspb/nginx-auth-ldap |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
966 syn keyword ngxDirectiveThirdParty contained auth_ldap |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
967 syn keyword ngxDirectiveThirdParty contained auth_ldap_cache_enabled |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
968 syn keyword ngxDirectiveThirdParty contained auth_ldap_cache_expiration_time |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
969 syn keyword ngxDirectiveThirdParty contained auth_ldap_cache_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
970 syn keyword ngxDirectiveThirdParty contained auth_ldap_servers |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
971 syn keyword ngxDirectiveThirdParty contained auth_ldap_servers_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
972 syn keyword ngxDirectiveThirdParty contained ldap_server |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
973 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
974 " https://github.com/sto/ngx_http_auth_pam_module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
975 syn keyword ngxDirectiveThirdParty contained auth_pam |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
976 syn keyword ngxDirectiveThirdParty contained auth_pam_service_name |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
977 syn keyword ngxDirectiveThirdParty contained auth_pam_set_pam_env |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
978 |
| 612 | 979 " https://github.com/arut/nginx-dav-ext-module |
| 623 | 980 syn keyword ngxDirectiveThirdParty contained dav_ext_lock |
| 981 syn keyword ngxDirectiveThirdParty contained dav_ext_lock_zone | |
| 612 | 982 syn keyword ngxDirectiveThirdParty contained dav_ext_methods |
| 596 | 983 |
| 612 | 984 " https://github.com/openresty/nginx-eval-module |
| 985 syn keyword ngxDirectiveThirdParty contained eval | |
| 986 syn keyword ngxDirectiveThirdParty contained eval_buffer_size | |
| 987 syn keyword ngxDirectiveThirdParty contained eval_escalate | |
| 988 syn keyword ngxDirectiveThirdParty contained eval_override_content_type | |
| 989 syn keyword ngxDirectiveThirdParty contained eval_subrequest_in_memory | |
| 596 | 990 |
| 612 | 991 " https://github.com/aperezdc/ngx-fancyindex |
| 992 syn keyword ngxDirectiveThirdParty contained fancyindex | |
| 726 | 993 syn keyword ngxDirectiveThirdParty contained fancyindex_case_sensitive |
| 612 | 994 syn keyword ngxDirectiveThirdParty contained fancyindex_css_href |
| 995 syn keyword ngxDirectiveThirdParty contained fancyindex_default_sort | |
| 996 syn keyword ngxDirectiveThirdParty contained fancyindex_directories_first | |
| 997 syn keyword ngxDirectiveThirdParty contained fancyindex_exact_size | |
| 998 syn keyword ngxDirectiveThirdParty contained fancyindex_footer | |
| 999 syn keyword ngxDirectiveThirdParty contained fancyindex_header | |
| 623 | 1000 syn keyword ngxDirectiveThirdParty contained fancyindex_hide_parent_dir |
| 612 | 1001 syn keyword ngxDirectiveThirdParty contained fancyindex_hide_symlinks |
| 1002 syn keyword ngxDirectiveThirdParty contained fancyindex_ignore | |
| 1003 syn keyword ngxDirectiveThirdParty contained fancyindex_localtime | |
| 642 | 1004 syn keyword ngxDirectiveThirdParty contained fancyindex_show_dotfiles |
| 612 | 1005 syn keyword ngxDirectiveThirdParty contained fancyindex_show_path |
| 1006 syn keyword ngxDirectiveThirdParty contained fancyindex_time_format | |
| 596 | 1007 |
| 612 | 1008 " https://github.com/alibaba/nginx-http-footer-filter |
| 1009 syn keyword ngxDirectiveThirdParty contained footer | |
| 1010 syn keyword ngxDirectiveThirdParty contained footer_types | |
| 596 | 1011 |
| 612 | 1012 " https://github.com/leev/ngx_http_geoip2_module |
| 1013 syn keyword ngxDirectiveThirdParty contained geoip2 | |
| 1014 syn keyword ngxDirectiveThirdParty contained geoip2_proxy | |
| 1015 syn keyword ngxDirectiveThirdParty contained geoip2_proxy_recursive | |
| 596 | 1016 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1017 " https://github.com/ip2location/ip2location-nginx |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1018 syn keyword ngxDirectiveThirdParty contained ip2location_database |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1019 syn keyword ngxDirectiveThirdParty contained ip2location_proxy |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1020 syn keyword ngxDirectiveThirdParty contained ip2location_proxy_recursive |
| 596 | 1021 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1022 " https://github.com/ip2location/ip2proxy-nginx |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1023 syn keyword ngxDirectiveThirdParty contained ip2proxy_database |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1024 syn keyword ngxDirectiveThirdParty contained ip2proxy_proxy |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1025 syn keyword ngxDirectiveThirdParty contained ip2proxy_proxy_recursive |
| 596 | 1026 |
| 612 | 1027 " https://github.com/kr/nginx-notice |
| 1028 syn keyword ngxDirectiveThirdParty contained notice | |
| 1029 syn keyword ngxDirectiveThirdParty contained notice_type | |
| 596 | 1030 |
| 612 | 1031 " https://github.com/slact/nchan |
| 623 | 1032 syn keyword ngxDirectiveThirdParty contained nchan_access_control_allow_credentials |
| 612 | 1033 syn keyword ngxDirectiveThirdParty contained nchan_access_control_allow_origin |
| 1034 syn keyword ngxDirectiveThirdParty contained nchan_authorize_request | |
| 623 | 1035 syn keyword ngxDirectiveThirdParty contained nchan_benchmark |
| 1036 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_channels | |
| 1037 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_message_padding_bytes | |
| 1038 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_messages_per_channel_per_minute | |
| 1039 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_publisher_distribution | |
| 1040 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_subscriber_distribution | |
| 1041 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_subscribers_per_channel | |
| 1042 syn keyword ngxDirectiveThirdParty contained nchan_benchmark_time | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1043 syn keyword ngxDirectiveThirdParty contained nchan_channel_event_string |
| 642 | 1044 syn keyword ngxDirectiveThirdParty contained nchan_channel_events_channel_id |
| 612 | 1045 syn keyword ngxDirectiveThirdParty contained nchan_channel_group |
| 1046 syn keyword ngxDirectiveThirdParty contained nchan_channel_group_accounting | |
| 1047 syn keyword ngxDirectiveThirdParty contained nchan_channel_id | |
| 1048 syn keyword ngxDirectiveThirdParty contained nchan_channel_id_split_delimiter | |
| 1049 syn keyword ngxDirectiveThirdParty contained nchan_channel_timeout | |
| 1050 syn keyword ngxDirectiveThirdParty contained nchan_deflate_message_for_websocket | |
| 1051 syn keyword ngxDirectiveThirdParty contained nchan_eventsource_event | |
| 642 | 1052 syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_comment |
| 1053 syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_data | |
| 1054 syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_event | |
| 1055 syn keyword ngxDirectiveThirdParty contained nchan_eventsource_ping_interval | |
| 612 | 1056 syn keyword ngxDirectiveThirdParty contained nchan_group_location |
| 1057 syn keyword ngxDirectiveThirdParty contained nchan_group_max_channels | |
| 1058 syn keyword ngxDirectiveThirdParty contained nchan_group_max_messages | |
| 1059 syn keyword ngxDirectiveThirdParty contained nchan_group_max_messages_disk | |
| 1060 syn keyword ngxDirectiveThirdParty contained nchan_group_max_messages_memory | |
| 1061 syn keyword ngxDirectiveThirdParty contained nchan_group_max_subscribers | |
| 1062 syn keyword ngxDirectiveThirdParty contained nchan_longpoll_multipart_response | |
| 1063 syn keyword ngxDirectiveThirdParty contained nchan_max_channel_id_length | |
| 1064 syn keyword ngxDirectiveThirdParty contained nchan_max_channel_subscribers | |
| 1065 syn keyword ngxDirectiveThirdParty contained nchan_max_reserved_memory | |
| 1066 syn keyword ngxDirectiveThirdParty contained nchan_message_buffer_length | |
| 1067 syn keyword ngxDirectiveThirdParty contained nchan_message_max_buffer_length | |
| 1068 syn keyword ngxDirectiveThirdParty contained nchan_message_temp_path | |
| 1069 syn keyword ngxDirectiveThirdParty contained nchan_message_timeout | |
| 1070 syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_level | |
| 1071 syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_memlevel | |
| 1072 syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_strategy | |
| 1073 syn keyword ngxDirectiveThirdParty contained nchan_permessage_deflate_compression_window | |
| 1074 syn keyword ngxDirectiveThirdParty contained nchan_pub_channel_id | |
| 1075 syn keyword ngxDirectiveThirdParty contained nchan_publisher | |
| 1076 syn keyword ngxDirectiveThirdParty contained nchan_publisher_channel_id | |
| 1077 syn keyword ngxDirectiveThirdParty contained nchan_publisher_location | |
| 1078 syn keyword ngxDirectiveThirdParty contained nchan_publisher_upstream_request | |
| 1079 syn keyword ngxDirectiveThirdParty contained nchan_pubsub | |
| 1080 syn keyword ngxDirectiveThirdParty contained nchan_pubsub_channel_id | |
| 1081 syn keyword ngxDirectiveThirdParty contained nchan_pubsub_location | |
| 726 | 1082 syn keyword ngxDirectiveThirdParty contained nchan_redis_accurate_subscriber_count |
| 673 | 1083 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_check_interval |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1084 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_check_interval_backoff |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1085 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_check_interval_jitter |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1086 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_check_interval_max |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1087 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_check_interval_min |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1088 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_connect_timeout |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1089 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_max_failing_time |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1090 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_recovery_delay |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1091 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_recovery_delay_backoff |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1092 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_recovery_delay_jitter |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1093 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_recovery_delay_max |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1094 syn keyword ngxDirectiveThirdParty contained nchan_redis_cluster_recovery_delay_min |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1095 syn keyword ngxDirectiveThirdParty contained nchan_redis_command_timeout |
| 623 | 1096 syn keyword ngxDirectiveThirdParty contained nchan_redis_connect_timeout |
| 673 | 1097 syn keyword ngxDirectiveThirdParty contained nchan_redis_discovered_ip_range_blacklist |
| 612 | 1098 syn keyword ngxDirectiveThirdParty contained nchan_redis_fakesub_timer_interval |
| 1099 syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_cache_timeout | |
| 726 | 1100 syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_keepalive_backoff |
| 1101 syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_keepalive_jitter | |
| 1102 syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_keepalive_max | |
| 1103 syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_keepalive_min | |
| 1104 syn keyword ngxDirectiveThirdParty contained nchan_redis_idle_channel_keepalive_safety_margin | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1105 syn keyword ngxDirectiveThirdParty contained nchan_redis_load_scripts_unconditionally |
| 612 | 1106 syn keyword ngxDirectiveThirdParty contained nchan_redis_namespace |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1107 syn keyword ngxDirectiveThirdParty contained nchan_redis_node_connect_timeout |
| 623 | 1108 syn keyword ngxDirectiveThirdParty contained nchan_redis_nostore_fastpublish |
| 1109 syn keyword ngxDirectiveThirdParty contained nchan_redis_optimize_target | |
| 612 | 1110 syn keyword ngxDirectiveThirdParty contained nchan_redis_pass |
| 1111 syn keyword ngxDirectiveThirdParty contained nchan_redis_pass_inheritable | |
| 673 | 1112 syn keyword ngxDirectiveThirdParty contained nchan_redis_password |
| 612 | 1113 syn keyword ngxDirectiveThirdParty contained nchan_redis_ping_interval |
| 1114 syn keyword ngxDirectiveThirdParty contained nchan_redis_publish_msgpacked_max_size | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1115 syn keyword ngxDirectiveThirdParty contained nchan_redis_reconnect_delay |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1116 syn keyword ngxDirectiveThirdParty contained nchan_redis_reconnect_delay_backoff |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1117 syn keyword ngxDirectiveThirdParty contained nchan_redis_reconnect_delay_jitter |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1118 syn keyword ngxDirectiveThirdParty contained nchan_redis_reconnect_delay_max |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1119 syn keyword ngxDirectiveThirdParty contained nchan_redis_reconnect_delay_min |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1120 syn keyword ngxDirectiveThirdParty contained nchan_redis_retry_commands |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1121 syn keyword ngxDirectiveThirdParty contained nchan_redis_retry_commands_max_wait |
| 612 | 1122 syn keyword ngxDirectiveThirdParty contained nchan_redis_server |
| 673 | 1123 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl |
| 1124 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_ciphers | |
| 1125 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_client_certificate | |
| 1126 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_client_certificate_key | |
| 1127 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_server_name | |
| 1128 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_trusted_certificate | |
| 1129 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_trusted_certificate_path | |
| 1130 syn keyword ngxDirectiveThirdParty contained nchan_redis_ssl_verify_certificate | |
| 612 | 1131 syn keyword ngxDirectiveThirdParty contained nchan_redis_storage_mode |
| 623 | 1132 syn keyword ngxDirectiveThirdParty contained nchan_redis_subscribe_weights |
| 673 | 1133 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls |
| 1134 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls_ciphers | |
| 1135 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls_client_certificate | |
| 1136 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls_server_name | |
| 1137 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls_trusted_certificate | |
| 1138 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls_trusted_certificate_path | |
| 1139 syn keyword ngxDirectiveThirdParty contained nchan_redis_tls_verify_certificate | |
| 726 | 1140 syn keyword ngxDirectiveThirdParty contained nchan_redis_upstream_stats |
| 1141 syn keyword ngxDirectiveThirdParty contained nchan_redis_upstream_stats_disconnected_timeout | |
| 1142 syn keyword ngxDirectiveThirdParty contained nchan_redis_upstream_stats_enabled | |
| 612 | 1143 syn keyword ngxDirectiveThirdParty contained nchan_redis_url |
| 673 | 1144 syn keyword ngxDirectiveThirdParty contained nchan_redis_username |
| 612 | 1145 syn keyword ngxDirectiveThirdParty contained nchan_redis_wait_after_connecting |
| 1146 syn keyword ngxDirectiveThirdParty contained nchan_shared_memory_size | |
| 1147 syn keyword ngxDirectiveThirdParty contained nchan_storage_engine | |
| 1148 syn keyword ngxDirectiveThirdParty contained nchan_store_messages | |
| 1149 syn keyword ngxDirectiveThirdParty contained nchan_stub_status | |
| 1150 syn keyword ngxDirectiveThirdParty contained nchan_sub_channel_id | |
| 1151 syn keyword ngxDirectiveThirdParty contained nchan_subscribe_existing_channels_only | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1152 syn keyword ngxDirectiveThirdParty contained nchan_subscribe_request |
| 612 | 1153 syn keyword ngxDirectiveThirdParty contained nchan_subscriber |
| 1154 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_channel_id | |
| 1155 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_compound_etag_message_id | |
| 1156 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_first_message | |
| 1157 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_http_raw_stream_separator | |
| 661 | 1158 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_info |
| 1159 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_info_string | |
| 612 | 1160 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_last_message_id |
| 1161 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_location | |
| 1162 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_message_id_custom_etag_header | |
| 1163 syn keyword ngxDirectiveThirdParty contained nchan_subscriber_timeout | |
| 1164 syn keyword ngxDirectiveThirdParty contained nchan_unsubscribe_request | |
| 1165 syn keyword ngxDirectiveThirdParty contained nchan_use_redis | |
| 1166 syn keyword ngxDirectiveThirdParty contained nchan_websocket_client_heartbeat | |
| 1167 syn keyword ngxDirectiveThirdParty contained nchan_websocket_ping_interval | |
| 1168 syn keyword ngxDirectiveThirdParty contained push_authorized_channels_only | |
| 1169 syn keyword ngxDirectiveThirdParty contained push_channel_group | |
| 1170 syn keyword ngxDirectiveThirdParty contained push_channel_timeout | |
| 1171 syn keyword ngxDirectiveThirdParty contained push_max_channel_id_length | |
| 1172 syn keyword ngxDirectiveThirdParty contained push_max_channel_subscribers | |
| 1173 syn keyword ngxDirectiveThirdParty contained push_max_message_buffer_length | |
| 1174 syn keyword ngxDirectiveThirdParty contained push_max_reserved_memory | |
| 1175 syn keyword ngxDirectiveThirdParty contained push_message_buffer_length | |
| 1176 syn keyword ngxDirectiveThirdParty contained push_message_timeout | |
| 1177 syn keyword ngxDirectiveThirdParty contained push_min_message_buffer_length | |
| 1178 syn keyword ngxDirectiveThirdParty contained push_publisher | |
| 1179 syn keyword ngxDirectiveThirdParty contained push_store_messages | |
| 1180 syn keyword ngxDirectiveThirdParty contained push_subscriber | |
| 1181 syn keyword ngxDirectiveThirdParty contained push_subscriber_concurrency | |
| 1182 syn keyword ngxDirectiveThirdParty contained push_subscriber_timeout | |
| 596 | 1183 |
| 612 | 1184 " https://github.com/wandenberg/nginx-push-stream-module |
| 1185 syn keyword ngxDirectiveThirdParty contained push_stream_allow_connections_to_events_channel | |
| 1186 syn keyword ngxDirectiveThirdParty contained push_stream_allowed_origins | |
| 1187 syn keyword ngxDirectiveThirdParty contained push_stream_authorized_channels_only | |
| 1188 syn keyword ngxDirectiveThirdParty contained push_stream_channel_deleted_message_text | |
| 1189 syn keyword ngxDirectiveThirdParty contained push_stream_channel_inactivity_time | |
| 1190 syn keyword ngxDirectiveThirdParty contained push_stream_channel_info_on_publish | |
| 1191 syn keyword ngxDirectiveThirdParty contained push_stream_channels_path | |
| 1192 syn keyword ngxDirectiveThirdParty contained push_stream_channels_statistics | |
| 1193 syn keyword ngxDirectiveThirdParty contained push_stream_events_channel_id | |
| 1194 syn keyword ngxDirectiveThirdParty contained push_stream_footer_template | |
| 1195 syn keyword ngxDirectiveThirdParty contained push_stream_header_template | |
| 1196 syn keyword ngxDirectiveThirdParty contained push_stream_header_template_file | |
| 1197 syn keyword ngxDirectiveThirdParty contained push_stream_last_event_id | |
| 1198 syn keyword ngxDirectiveThirdParty contained push_stream_last_received_message_tag | |
| 1199 syn keyword ngxDirectiveThirdParty contained push_stream_last_received_message_time | |
| 1200 syn keyword ngxDirectiveThirdParty contained push_stream_longpolling_connection_ttl | |
| 1201 syn keyword ngxDirectiveThirdParty contained push_stream_max_channel_id_length | |
| 1202 syn keyword ngxDirectiveThirdParty contained push_stream_max_messages_stored_per_channel | |
| 1203 syn keyword ngxDirectiveThirdParty contained push_stream_max_number_of_channels | |
| 1204 syn keyword ngxDirectiveThirdParty contained push_stream_max_number_of_wildcard_channels | |
| 1205 syn keyword ngxDirectiveThirdParty contained push_stream_max_subscribers_per_channel | |
| 1206 syn keyword ngxDirectiveThirdParty contained push_stream_message_template | |
| 1207 syn keyword ngxDirectiveThirdParty contained push_stream_message_ttl | |
| 1208 syn keyword ngxDirectiveThirdParty contained push_stream_padding_by_user_agent | |
| 1209 syn keyword ngxDirectiveThirdParty contained push_stream_ping_message_interval | |
| 1210 syn keyword ngxDirectiveThirdParty contained push_stream_ping_message_text | |
| 1211 syn keyword ngxDirectiveThirdParty contained push_stream_publisher | |
| 1212 syn keyword ngxDirectiveThirdParty contained push_stream_shared_memory_size | |
| 1213 syn keyword ngxDirectiveThirdParty contained push_stream_store_messages | |
| 1214 syn keyword ngxDirectiveThirdParty contained push_stream_subscriber | |
| 1215 syn keyword ngxDirectiveThirdParty contained push_stream_subscriber_connection_ttl | |
| 1216 syn keyword ngxDirectiveThirdParty contained push_stream_timeout_with_body | |
| 1217 syn keyword ngxDirectiveThirdParty contained push_stream_user_agent | |
| 1218 syn keyword ngxDirectiveThirdParty contained push_stream_websocket_allow_publish | |
| 1219 syn keyword ngxDirectiveThirdParty contained push_stream_wildcard_channel_max_qtd | |
| 1220 syn keyword ngxDirectiveThirdParty contained push_stream_wildcard_channel_prefix | |
| 596 | 1221 |
| 612 | 1222 " https://github.com/yaoweibin/ngx_http_substitutions_filter_module |
| 1223 syn keyword ngxDirectiveThirdParty contained subs_buffers | |
| 1224 syn keyword ngxDirectiveThirdParty contained subs_filter | |
| 1225 syn keyword ngxDirectiveThirdParty contained subs_filter_bypass | |
| 1226 syn keyword ngxDirectiveThirdParty contained subs_filter_types | |
| 1227 syn keyword ngxDirectiveThirdParty contained subs_line_buffer_size | |
| 596 | 1228 |
| 612 | 1229 " https://github.com/tarantool/nginx_upstream_module |
| 1230 syn keyword ngxDirectiveThirdParty contained tnt_allowed_indexes | |
| 1231 syn keyword ngxDirectiveThirdParty contained tnt_allowed_spaces | |
| 1232 syn keyword ngxDirectiveThirdParty contained tnt_buffer_size | |
| 1233 syn keyword ngxDirectiveThirdParty contained tnt_connect_timeout | |
| 1234 syn keyword ngxDirectiveThirdParty contained tnt_delete | |
| 1235 syn keyword ngxDirectiveThirdParty contained tnt_http_methods | |
| 1236 syn keyword ngxDirectiveThirdParty contained tnt_http_rest_methods | |
| 1237 syn keyword ngxDirectiveThirdParty contained tnt_in_multiplier | |
| 1238 syn keyword ngxDirectiveThirdParty contained tnt_insert | |
| 1239 syn keyword ngxDirectiveThirdParty contained tnt_method | |
| 1240 syn keyword ngxDirectiveThirdParty contained tnt_multireturn_skip_count | |
| 1241 syn keyword ngxDirectiveThirdParty contained tnt_next_upstream | |
| 1242 syn keyword ngxDirectiveThirdParty contained tnt_next_upstream_timeout | |
| 1243 syn keyword ngxDirectiveThirdParty contained tnt_next_upstream_tries | |
| 1244 syn keyword ngxDirectiveThirdParty contained tnt_out_multiplier | |
| 1245 syn keyword ngxDirectiveThirdParty contained tnt_pass | |
| 1246 syn keyword ngxDirectiveThirdParty contained tnt_pass_http_request | |
| 1247 syn keyword ngxDirectiveThirdParty contained tnt_pass_http_request_buffer_size | |
| 1248 syn keyword ngxDirectiveThirdParty contained tnt_pure_result | |
| 1249 syn keyword ngxDirectiveThirdParty contained tnt_read_timeout | |
| 1250 syn keyword ngxDirectiveThirdParty contained tnt_replace | |
| 1251 syn keyword ngxDirectiveThirdParty contained tnt_select | |
| 1252 syn keyword ngxDirectiveThirdParty contained tnt_select_limit_max | |
| 1253 syn keyword ngxDirectiveThirdParty contained tnt_send_timeout | |
| 1254 syn keyword ngxDirectiveThirdParty contained tnt_set_header | |
| 1255 syn keyword ngxDirectiveThirdParty contained tnt_update | |
| 1256 syn keyword ngxDirectiveThirdParty contained tnt_upsert | |
| 596 | 1257 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1258 " https://github.com/fdintino/nginx-upload-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1259 syn keyword ngxDirectiveThirdParty contained upload_add_header |
| 612 | 1260 syn keyword ngxDirectiveThirdParty contained upload_aggregate_form_field |
| 1261 syn keyword ngxDirectiveThirdParty contained upload_buffer_size | |
| 1262 syn keyword ngxDirectiveThirdParty contained upload_cleanup | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1263 syn keyword ngxDirectiveThirdParty contained upload_empty_fiels_names |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1264 syn keyword ngxDirectiveThirdParty contained upload_limit_rate |
| 612 | 1265 syn keyword ngxDirectiveThirdParty contained upload_max_file_size |
| 1266 syn keyword ngxDirectiveThirdParty contained upload_max_output_body_len | |
| 1267 syn keyword ngxDirectiveThirdParty contained upload_max_part_header_len | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1268 syn keyword ngxDirectiveThirdParty contained upload_merge_buffer_size |
| 612 | 1269 syn keyword ngxDirectiveThirdParty contained upload_pass |
| 1270 syn keyword ngxDirectiveThirdParty contained upload_pass_args | |
| 1271 syn keyword ngxDirectiveThirdParty contained upload_pass_form_field | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1272 syn keyword ngxDirectiveThirdParty contained upload_range_header_buffer_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1273 syn keyword ngxDirectiveThirdParty contained upload_resumable |
| 612 | 1274 syn keyword ngxDirectiveThirdParty contained upload_set_form_field |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1275 syn keyword ngxDirectiveThirdParty contained upload_state_store |
| 612 | 1276 syn keyword ngxDirectiveThirdParty contained upload_store |
| 1277 syn keyword ngxDirectiveThirdParty contained upload_store_access | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1278 syn keyword ngxDirectiveThirdParty contained upload_tame_arrays |
| 596 | 1279 |
| 612 | 1280 " https://github.com/masterzen/nginx-upload-progress-module |
| 1281 syn keyword ngxDirectiveThirdParty contained report_uploads | |
| 1282 syn keyword ngxDirectiveThirdParty contained track_uploads | |
| 1283 syn keyword ngxDirectiveThirdParty contained upload_progress | |
| 1284 syn keyword ngxDirectiveThirdParty contained upload_progress_content_type | |
| 1285 syn keyword ngxDirectiveThirdParty contained upload_progress_header | |
| 1286 syn keyword ngxDirectiveThirdParty contained upload_progress_java_output | |
| 1287 syn keyword ngxDirectiveThirdParty contained upload_progress_json_output | |
| 1288 syn keyword ngxDirectiveThirdParty contained upload_progress_jsonp_output | |
| 1289 syn keyword ngxDirectiveThirdParty contained upload_progress_jsonp_parameter | |
| 1290 syn keyword ngxDirectiveThirdParty contained upload_progress_template | |
| 596 | 1291 |
| 612 | 1292 " https://github.com/yaoweibin/nginx_upstream_check_module |
| 726 | 1293 syn keyword ngxDirectiveThirdParty contained check |
| 612 | 1294 syn keyword ngxDirectiveThirdParty contained check_fastcgi_param |
| 1295 syn keyword ngxDirectiveThirdParty contained check_http_expect_alive | |
| 1296 syn keyword ngxDirectiveThirdParty contained check_http_send | |
| 1297 syn keyword ngxDirectiveThirdParty contained check_keepalive_requests | |
| 1298 syn keyword ngxDirectiveThirdParty contained check_shm_size | |
| 1299 syn keyword ngxDirectiveThirdParty contained check_status | |
| 596 | 1300 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1301 " https://github.com/jaygooby/nginx-upstream-fair |
| 612 | 1302 syn keyword ngxDirectiveThirdParty contained fair |
| 1303 syn keyword ngxDirectiveThirdParty contained upstream_fair_shm_size | |
| 596 | 1304 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1305 " https://github.com/ayty-adrianomartins/nginx-sticky-module-ng |
| 726 | 1306 syn keyword ngxDirectiveThirdParty contained sticky_hide_cookie |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1307 syn keyword ngxDirectiveThirdParty contained sticky_no_fallback |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1308 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1309 " https://github.com/Novetta/nginx-video-thumbextractor-module |
| 612 | 1310 syn keyword ngxDirectiveThirdParty contained video_thumbextractor |
| 1311 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_image_height | |
| 1312 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_image_width | |
| 1313 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_baseline | |
| 1314 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_dpi | |
| 1315 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_optimize | |
| 1316 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_progressive_mode | |
| 1317 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_quality | |
| 1318 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_jpeg_smooth | |
| 1319 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_next_time | |
| 1320 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_only_keyframe | |
| 1321 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_processes_per_worker | |
| 1322 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_threads | |
| 1323 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_color | |
| 1324 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_cols | |
| 1325 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_margin | |
| 1326 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_max_cols | |
| 1327 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_max_rows | |
| 1328 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_padding | |
| 1329 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_rows | |
| 1330 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_tile_sample_interval | |
| 1331 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_video_filename | |
| 1332 syn keyword ngxDirectiveThirdParty contained video_thumbextractor_video_second | |
| 596 | 1333 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1334 " https://github.com/calio/iconv-nginx-module |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1335 syn keyword ngxDirectiveThirdParty contained iconv_buffer_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1336 syn keyword ngxDirectiveThirdParty contained iconv_filter |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1337 syn keyword ngxDirectiveThirdParty contained set_iconv |
| 596 | 1338 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1339 " https://github.com/baysao/nginx-let-module |
| 612 | 1340 syn keyword ngxDirectiveThirdParty contained let |
| 596 | 1341 |
| 612 | 1342 " https://github.com/openresty/lua-nginx-module |
| 1343 syn keyword ngxDirectiveThirdParty contained access_by_lua | |
| 1344 syn keyword ngxDirectiveThirdParty contained access_by_lua_block | |
| 1345 syn keyword ngxDirectiveThirdParty contained access_by_lua_file | |
| 1346 syn keyword ngxDirectiveThirdParty contained access_by_lua_no_postpone | |
| 1347 syn keyword ngxDirectiveThirdParty contained balancer_by_lua_block | |
| 1348 syn keyword ngxDirectiveThirdParty contained balancer_by_lua_file | |
| 1349 syn keyword ngxDirectiveThirdParty contained body_filter_by_lua | |
| 1350 syn keyword ngxDirectiveThirdParty contained body_filter_by_lua_block | |
| 1351 syn keyword ngxDirectiveThirdParty contained body_filter_by_lua_file | |
| 1352 syn keyword ngxDirectiveThirdParty contained content_by_lua | |
| 1353 syn keyword ngxDirectiveThirdParty contained content_by_lua_block | |
| 1354 syn keyword ngxDirectiveThirdParty contained content_by_lua_file | |
| 661 | 1355 syn keyword ngxDirectiveThirdParty contained exit_worker_by_lua_block |
| 1356 syn keyword ngxDirectiveThirdParty contained exit_worker_by_lua_file | |
| 612 | 1357 syn keyword ngxDirectiveThirdParty contained header_filter_by_lua |
| 1358 syn keyword ngxDirectiveThirdParty contained header_filter_by_lua_block | |
| 1359 syn keyword ngxDirectiveThirdParty contained header_filter_by_lua_file | |
| 1360 syn keyword ngxDirectiveThirdParty contained init_by_lua | |
| 1361 syn keyword ngxDirectiveThirdParty contained init_by_lua_block | |
| 1362 syn keyword ngxDirectiveThirdParty contained init_by_lua_file | |
| 1363 syn keyword ngxDirectiveThirdParty contained init_worker_by_lua | |
| 1364 syn keyword ngxDirectiveThirdParty contained init_worker_by_lua_block | |
| 1365 syn keyword ngxDirectiveThirdParty contained init_worker_by_lua_file | |
| 1366 syn keyword ngxDirectiveThirdParty contained log_by_lua | |
| 1367 syn keyword ngxDirectiveThirdParty contained log_by_lua_block | |
| 1368 syn keyword ngxDirectiveThirdParty contained log_by_lua_file | |
| 1369 syn keyword ngxDirectiveThirdParty contained lua_capture_error_log | |
| 1370 syn keyword ngxDirectiveThirdParty contained lua_check_client_abort | |
| 1371 syn keyword ngxDirectiveThirdParty contained lua_code_cache | |
| 1372 syn keyword ngxDirectiveThirdParty contained lua_fake_shm | |
| 1373 syn keyword ngxDirectiveThirdParty contained lua_http10_buffering | |
| 629 | 1374 syn keyword ngxDirectiveThirdParty contained lua_load_resty_core |
| 612 | 1375 syn keyword ngxDirectiveThirdParty contained lua_malloc_trim |
| 1376 syn keyword ngxDirectiveThirdParty contained lua_max_pending_timers | |
| 1377 syn keyword ngxDirectiveThirdParty contained lua_max_running_timers | |
| 1378 syn keyword ngxDirectiveThirdParty contained lua_need_request_body | |
| 1379 syn keyword ngxDirectiveThirdParty contained lua_package_cpath | |
| 1380 syn keyword ngxDirectiveThirdParty contained lua_package_path | |
| 1381 syn keyword ngxDirectiveThirdParty contained lua_regex_cache_max_entries | |
| 1382 syn keyword ngxDirectiveThirdParty contained lua_regex_match_limit | |
| 623 | 1383 syn keyword ngxDirectiveThirdParty contained lua_sa_restart |
| 612 | 1384 syn keyword ngxDirectiveThirdParty contained lua_shared_dict |
| 1385 syn keyword ngxDirectiveThirdParty contained lua_socket_buffer_size | |
| 1386 syn keyword ngxDirectiveThirdParty contained lua_socket_connect_timeout | |
| 1387 syn keyword ngxDirectiveThirdParty contained lua_socket_keepalive_timeout | |
| 1388 syn keyword ngxDirectiveThirdParty contained lua_socket_log_errors | |
| 1389 syn keyword ngxDirectiveThirdParty contained lua_socket_pool_size | |
| 1390 syn keyword ngxDirectiveThirdParty contained lua_socket_read_timeout | |
| 1391 syn keyword ngxDirectiveThirdParty contained lua_socket_send_lowat | |
| 1392 syn keyword ngxDirectiveThirdParty contained lua_socket_send_timeout | |
| 726 | 1393 syn keyword ngxDirectiveThirdParty contained lua_ssl_certificate |
| 1394 syn keyword ngxDirectiveThirdParty contained lua_ssl_certificate_key | |
| 612 | 1395 syn keyword ngxDirectiveThirdParty contained lua_ssl_ciphers |
| 673 | 1396 syn keyword ngxDirectiveThirdParty contained lua_ssl_conf_command |
| 612 | 1397 syn keyword ngxDirectiveThirdParty contained lua_ssl_crl |
| 1398 syn keyword ngxDirectiveThirdParty contained lua_ssl_protocols | |
| 1399 syn keyword ngxDirectiveThirdParty contained lua_ssl_trusted_certificate | |
| 1400 syn keyword ngxDirectiveThirdParty contained lua_ssl_verify_depth | |
| 661 | 1401 syn keyword ngxDirectiveThirdParty contained lua_thread_cache_max_entries |
| 612 | 1402 syn keyword ngxDirectiveThirdParty contained lua_transform_underscores_in_response_headers |
| 1403 syn keyword ngxDirectiveThirdParty contained lua_use_default_type | |
| 673 | 1404 syn keyword ngxDirectiveThirdParty contained lua_worker_thread_vm_pool_size |
| 612 | 1405 syn keyword ngxDirectiveThirdParty contained rewrite_by_lua |
| 1406 syn keyword ngxDirectiveThirdParty contained rewrite_by_lua_block | |
| 1407 syn keyword ngxDirectiveThirdParty contained rewrite_by_lua_file | |
| 1408 syn keyword ngxDirectiveThirdParty contained rewrite_by_lua_no_postpone | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1409 syn keyword ngxDirectiveThirdParty contained server_rewrite_by_lua_block |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1410 syn keyword ngxDirectiveThirdParty contained server_rewrite_by_lua_file |
| 612 | 1411 syn keyword ngxDirectiveThirdParty contained set_by_lua |
| 1412 syn keyword ngxDirectiveThirdParty contained set_by_lua_block | |
| 1413 syn keyword ngxDirectiveThirdParty contained set_by_lua_file | |
| 1414 syn keyword ngxDirectiveThirdParty contained ssl_certificate_by_lua_block | |
| 1415 syn keyword ngxDirectiveThirdParty contained ssl_certificate_by_lua_file | |
| 673 | 1416 syn keyword ngxDirectiveThirdParty contained ssl_client_hello_by_lua_block |
| 1417 syn keyword ngxDirectiveThirdParty contained ssl_client_hello_by_lua_file | |
| 612 | 1418 syn keyword ngxDirectiveThirdParty contained ssl_session_fetch_by_lua_block |
| 1419 syn keyword ngxDirectiveThirdParty contained ssl_session_fetch_by_lua_file | |
| 1420 syn keyword ngxDirectiveThirdParty contained ssl_session_store_by_lua_block | |
| 1421 syn keyword ngxDirectiveThirdParty contained ssl_session_store_by_lua_file | |
| 596 | 1422 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1423 " https://github.com/Taymindis/nginx-link-function |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1424 syn keyword ngxDirectiveThirdParty contained ngx_link_func_add_prop |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1425 syn keyword ngxDirectiveThirdParty contained ngx_link_func_add_req_header |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1426 syn keyword ngxDirectiveThirdParty contained ngx_link_func_ca_cert |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1427 syn keyword ngxDirectiveThirdParty contained ngx_link_func_call |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1428 syn keyword ngxDirectiveThirdParty contained ngx_link_func_download_link_lib |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1429 syn keyword ngxDirectiveThirdParty contained ngx_link_func_lib |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1430 syn keyword ngxDirectiveThirdParty contained ngx_link_func_shm_size |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1431 syn keyword ngxDirectiveThirdParty contained ngx_link_func_subrequest |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1432 |
| 612 | 1433 " https://github.com/openresty/memc-nginx-module |
| 1434 syn keyword ngxDirectiveThirdParty contained memc_buffer_size | |
| 1435 syn keyword ngxDirectiveThirdParty contained memc_cmds_allowed | |
| 1436 syn keyword ngxDirectiveThirdParty contained memc_connect_timeout | |
| 1437 syn keyword ngxDirectiveThirdParty contained memc_flags_to_last_modified | |
| 1438 syn keyword ngxDirectiveThirdParty contained memc_ignore_client_abort | |
| 1439 syn keyword ngxDirectiveThirdParty contained memc_next_upstream | |
| 1440 syn keyword ngxDirectiveThirdParty contained memc_pass | |
| 1441 syn keyword ngxDirectiveThirdParty contained memc_read_timeout | |
| 1442 syn keyword ngxDirectiveThirdParty contained memc_send_timeout | |
| 1443 syn keyword ngxDirectiveThirdParty contained memc_upstream_fail_timeout | |
| 1444 syn keyword ngxDirectiveThirdParty contained memc_upstream_max_fails | |
| 1445 | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1446 " https://github.com/SpiderLabs/ModSecurity-nginx |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1447 syn keyword ngxDirectiveThirdParty contained modsecurity |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1448 syn keyword ngxDirectiveThirdParty contained modsecurity_rules |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1449 syn keyword ngxDirectiveThirdParty contained modsecurity_rules_file |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1450 syn keyword ngxDirectiveThirdParty contained modsecurity_rules_remote |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1451 syn keyword ngxDirectiveThirdParty contained modsecurity_transaction_id |
| 596 | 1452 |
| 612 | 1453 " https://github.com/nbs-system/naxsi |
| 1454 syn keyword ngxDirectiveThirdParty contained BasicRule | |
| 1455 syn keyword ngxDirectiveThirdParty contained CheckRule | |
| 1456 syn keyword ngxDirectiveThirdParty contained DeniedUrl | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1457 syn keyword ngxDirectiveThirdParty contained IgnoreCIDR |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1458 syn keyword ngxDirectiveThirdParty contained IgnoreIP |
| 612 | 1459 syn keyword ngxDirectiveThirdParty contained LearningMode |
| 1460 syn keyword ngxDirectiveThirdParty contained LibInjectionSql | |
| 1461 syn keyword ngxDirectiveThirdParty contained LibInjectionXss | |
| 1462 syn keyword ngxDirectiveThirdParty contained MainRule | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1463 syn keyword ngxDirectiveThirdParty contained NaxsiLogFile |
| 612 | 1464 syn keyword ngxDirectiveThirdParty contained SecRulesDisabled |
| 1465 syn keyword ngxDirectiveThirdParty contained SecRulesEnabled | |
| 1466 syn keyword ngxDirectiveThirdParty contained basic_rule | |
| 1467 syn keyword ngxDirectiveThirdParty contained check_rule | |
| 1468 syn keyword ngxDirectiveThirdParty contained denied_url | |
| 1469 syn keyword ngxDirectiveThirdParty contained learning_mode | |
| 1470 syn keyword ngxDirectiveThirdParty contained libinjection_sql | |
| 1471 syn keyword ngxDirectiveThirdParty contained libinjection_xss | |
| 1472 syn keyword ngxDirectiveThirdParty contained main_rule | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1473 syn keyword ngxDirectiveThirdParty contained naxsi_log |
| 612 | 1474 syn keyword ngxDirectiveThirdParty contained rules_disabled |
| 1475 syn keyword ngxDirectiveThirdParty contained rules_enabled | |
| 596 | 1476 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1477 " https://github.com/opentracing-contrib/nginx-opentracing |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1478 syn keyword ngxDirectiveThirdParty contained opentracing |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1479 syn keyword ngxDirectiveThirdParty contained opentracing_fastcgi_propagate_context |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1480 syn keyword ngxDirectiveThirdParty contained opentracing_grpc_propagate_context |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1481 syn keyword ngxDirectiveThirdParty contained opentracing_load_tracer |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1482 syn keyword ngxDirectiveThirdParty contained opentracing_location_operation_name |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1483 syn keyword ngxDirectiveThirdParty contained opentracing_operation_name |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1484 syn keyword ngxDirectiveThirdParty contained opentracing_propagate_context |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1485 syn keyword ngxDirectiveThirdParty contained opentracing_tag |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1486 syn keyword ngxDirectiveThirdParty contained opentracing_trace_locations |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1487 syn keyword ngxDirectiveThirdParty contained opentracing_trust_incoming_span |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1488 |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1489 " https://github.com/phusion/passenger |
| 612 | 1490 syn keyword ngxDirectiveThirdParty contained passenger_abort_on_startup_error |
| 1491 syn keyword ngxDirectiveThirdParty contained passenger_abort_websockets_on_process_shutdown | |
| 623 | 1492 syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_auth_type |
| 1493 syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_password | |
| 1494 syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_url | |
| 1495 syn keyword ngxDirectiveThirdParty contained passenger_admin_panel_username | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1496 syn keyword ngxDirectiveThirdParty contained passenger_analytics_log_group |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1497 syn keyword ngxDirectiveThirdParty contained passenger_analytics_log_user |
| 623 | 1498 syn keyword ngxDirectiveThirdParty contained passenger_anonymous_telemetry_proxy |
| 612 | 1499 syn keyword ngxDirectiveThirdParty contained passenger_app_env |
| 1500 syn keyword ngxDirectiveThirdParty contained passenger_app_file_descriptor_ulimit | |
| 1501 syn keyword ngxDirectiveThirdParty contained passenger_app_group_name | |
| 623 | 1502 syn keyword ngxDirectiveThirdParty contained passenger_app_log_file |
| 612 | 1503 syn keyword ngxDirectiveThirdParty contained passenger_app_rights |
| 1504 syn keyword ngxDirectiveThirdParty contained passenger_app_root | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1505 syn keyword ngxDirectiveThirdParty contained passenger_app_start_command |
| 612 | 1506 syn keyword ngxDirectiveThirdParty contained passenger_app_type |
| 1507 syn keyword ngxDirectiveThirdParty contained passenger_base_uri | |
| 1508 syn keyword ngxDirectiveThirdParty contained passenger_buffer_response | |
| 1509 syn keyword ngxDirectiveThirdParty contained passenger_buffer_size | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1510 syn keyword ngxDirectiveThirdParty contained passenger_buffer_upload |
| 612 | 1511 syn keyword ngxDirectiveThirdParty contained passenger_buffers |
| 1512 syn keyword ngxDirectiveThirdParty contained passenger_busy_buffers_size | |
| 1513 syn keyword ngxDirectiveThirdParty contained passenger_concurrency_model | |
| 1514 syn keyword ngxDirectiveThirdParty contained passenger_core_file_descriptor_ulimit | |
| 1515 syn keyword ngxDirectiveThirdParty contained passenger_ctl | |
| 1516 syn keyword ngxDirectiveThirdParty contained passenger_data_buffer_dir | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1517 syn keyword ngxDirectiveThirdParty contained passenger_debug_log_file |
| 612 | 1518 syn keyword ngxDirectiveThirdParty contained passenger_debugger |
| 1519 syn keyword ngxDirectiveThirdParty contained passenger_default_group | |
| 1520 syn keyword ngxDirectiveThirdParty contained passenger_default_user | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1521 syn keyword ngxDirectiveThirdParty contained passenger_direct_instance_request_address |
| 623 | 1522 syn keyword ngxDirectiveThirdParty contained passenger_disable_anonymous_telemetry |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1523 syn keyword ngxDirectiveThirdParty contained passenger_disable_log_prefix |
| 612 | 1524 syn keyword ngxDirectiveThirdParty contained passenger_disable_security_update_check |
| 1525 syn keyword ngxDirectiveThirdParty contained passenger_document_root | |
| 623 | 1526 syn keyword ngxDirectiveThirdParty contained passenger_dump_config_manifest |
| 612 | 1527 syn keyword ngxDirectiveThirdParty contained passenger_enabled |
| 1528 syn keyword ngxDirectiveThirdParty contained passenger_env_var | |
| 1529 syn keyword ngxDirectiveThirdParty contained passenger_file_descriptor_log_file | |
| 1530 syn keyword ngxDirectiveThirdParty contained passenger_fly_with | |
| 1531 syn keyword ngxDirectiveThirdParty contained passenger_force_max_concurrent_requests_per_process | |
| 1532 syn keyword ngxDirectiveThirdParty contained passenger_friendly_error_pages | |
| 1533 syn keyword ngxDirectiveThirdParty contained passenger_group | |
| 1534 syn keyword ngxDirectiveThirdParty contained passenger_headers_hash_bucket_size | |
| 1535 syn keyword ngxDirectiveThirdParty contained passenger_headers_hash_max_size | |
| 1536 syn keyword ngxDirectiveThirdParty contained passenger_ignore_client_abort | |
| 1537 syn keyword ngxDirectiveThirdParty contained passenger_ignore_headers | |
| 1538 syn keyword ngxDirectiveThirdParty contained passenger_instance_registry_dir | |
| 1539 syn keyword ngxDirectiveThirdParty contained passenger_intercept_errors | |
| 1540 syn keyword ngxDirectiveThirdParty contained passenger_load_shell_envvars | |
| 1541 syn keyword ngxDirectiveThirdParty contained passenger_log_file | |
| 1542 syn keyword ngxDirectiveThirdParty contained passenger_log_level | |
| 1543 syn keyword ngxDirectiveThirdParty contained passenger_max_instances | |
| 1544 syn keyword ngxDirectiveThirdParty contained passenger_max_instances_per_app | |
| 1545 syn keyword ngxDirectiveThirdParty contained passenger_max_pool_size | |
| 1546 syn keyword ngxDirectiveThirdParty contained passenger_max_preloader_idle_time | |
| 1547 syn keyword ngxDirectiveThirdParty contained passenger_max_request_queue_size | |
| 1548 syn keyword ngxDirectiveThirdParty contained passenger_max_request_queue_time | |
| 1549 syn keyword ngxDirectiveThirdParty contained passenger_max_request_time | |
| 1550 syn keyword ngxDirectiveThirdParty contained passenger_max_requests | |
| 1551 syn keyword ngxDirectiveThirdParty contained passenger_memory_limit | |
| 1552 syn keyword ngxDirectiveThirdParty contained passenger_meteor_app_settings | |
| 1553 syn keyword ngxDirectiveThirdParty contained passenger_min_instances | |
| 623 | 1554 syn keyword ngxDirectiveThirdParty contained passenger_monitor_log_file |
| 612 | 1555 syn keyword ngxDirectiveThirdParty contained passenger_nodejs |
| 1556 syn keyword ngxDirectiveThirdParty contained passenger_pass_header | |
| 1557 syn keyword ngxDirectiveThirdParty contained passenger_pool_idle_time | |
| 1558 syn keyword ngxDirectiveThirdParty contained passenger_pre_start | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1559 syn keyword ngxDirectiveThirdParty contained passenger_preload_bundler |
| 612 | 1560 syn keyword ngxDirectiveThirdParty contained passenger_python |
| 1561 syn keyword ngxDirectiveThirdParty contained passenger_read_timeout | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1562 syn keyword ngxDirectiveThirdParty contained passenger_request_buffering |
| 612 | 1563 syn keyword ngxDirectiveThirdParty contained passenger_request_queue_overflow_status_code |
| 1564 syn keyword ngxDirectiveThirdParty contained passenger_resist_deployment_errors | |
| 1565 syn keyword ngxDirectiveThirdParty contained passenger_response_buffer_high_watermark | |
| 1566 syn keyword ngxDirectiveThirdParty contained passenger_restart_dir | |
| 1567 syn keyword ngxDirectiveThirdParty contained passenger_rolling_restarts | |
| 1568 syn keyword ngxDirectiveThirdParty contained passenger_root | |
| 1569 syn keyword ngxDirectiveThirdParty contained passenger_ruby | |
| 1570 syn keyword ngxDirectiveThirdParty contained passenger_security_update_check_proxy | |
| 1571 syn keyword ngxDirectiveThirdParty contained passenger_set_header | |
| 1572 syn keyword ngxDirectiveThirdParty contained passenger_show_version_in_header | |
| 1573 syn keyword ngxDirectiveThirdParty contained passenger_socket_backlog | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1574 syn keyword ngxDirectiveThirdParty contained passenger_spawn_dir |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1575 syn keyword ngxDirectiveThirdParty contained passenger_spawn_exception_status_code |
| 612 | 1576 syn keyword ngxDirectiveThirdParty contained passenger_spawn_method |
| 1577 syn keyword ngxDirectiveThirdParty contained passenger_start_timeout | |
| 1578 syn keyword ngxDirectiveThirdParty contained passenger_startup_file | |
| 1579 syn keyword ngxDirectiveThirdParty contained passenger_stat_throttle_rate | |
| 1580 syn keyword ngxDirectiveThirdParty contained passenger_sticky_sessions | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1581 syn keyword ngxDirectiveThirdParty contained passenger_sticky_sessions_cookie_attributes |
| 612 | 1582 syn keyword ngxDirectiveThirdParty contained passenger_sticky_sessions_cookie_name |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1583 syn keyword ngxDirectiveThirdParty contained passenger_temp_path |
| 612 | 1584 syn keyword ngxDirectiveThirdParty contained passenger_thread_count |
| 1585 syn keyword ngxDirectiveThirdParty contained passenger_turbocaching | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1586 syn keyword ngxDirectiveThirdParty contained passenger_use_global_queue |
| 612 | 1587 syn keyword ngxDirectiveThirdParty contained passenger_user |
| 1588 syn keyword ngxDirectiveThirdParty contained passenger_user_switching | |
| 1589 syn keyword ngxDirectiveThirdParty contained passenger_vary_turbocache_by_cookie | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1590 syn keyword ngxDirectiveThirdParty contained rack_env |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1591 syn keyword ngxDirectiveThirdParty contained rails_app_spawner_idle_time |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1592 syn keyword ngxDirectiveThirdParty contained rails_env |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1593 syn keyword ngxDirectiveThirdParty contained rails_framework_spawner_idle_time |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1594 syn keyword ngxDirectiveThirdParty contained rails_spawn_method |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1595 syn keyword ngxDirectiveThirdParty contained union_station_filter |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1596 syn keyword ngxDirectiveThirdParty contained union_station_gateway_address |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1597 syn keyword ngxDirectiveThirdParty contained union_station_gateway_cert |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1598 syn keyword ngxDirectiveThirdParty contained union_station_gateway_port |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1599 syn keyword ngxDirectiveThirdParty contained union_station_key |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1600 syn keyword ngxDirectiveThirdParty contained union_station_proxy_address |
|
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1601 syn keyword ngxDirectiveThirdParty contained union_station_support |
| 596 | 1602 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1603 " https://github.com/konstruxi/ngx_postgres |
| 612 | 1604 syn keyword ngxDirectiveThirdParty contained postgres_connect_timeout |
| 1605 syn keyword ngxDirectiveThirdParty contained postgres_escape | |
| 1606 syn keyword ngxDirectiveThirdParty contained postgres_keepalive | |
| 1607 syn keyword ngxDirectiveThirdParty contained postgres_output | |
| 1608 syn keyword ngxDirectiveThirdParty contained postgres_pass | |
| 1609 syn keyword ngxDirectiveThirdParty contained postgres_query | |
| 1610 syn keyword ngxDirectiveThirdParty contained postgres_result_timeout | |
| 1611 syn keyword ngxDirectiveThirdParty contained postgres_rewrite | |
| 1612 syn keyword ngxDirectiveThirdParty contained postgres_server | |
| 1613 syn keyword ngxDirectiveThirdParty contained postgres_set | |
| 596 | 1614 |
| 612 | 1615 " https://github.com/openresty/rds-csv-nginx-module |
| 1616 syn keyword ngxDirectiveThirdParty contained rds_csv | |
| 1617 syn keyword ngxDirectiveThirdParty contained rds_csv_buffer_size | |
| 1618 syn keyword ngxDirectiveThirdParty contained rds_csv_content_type | |
| 1619 syn keyword ngxDirectiveThirdParty contained rds_csv_field_name_header | |
| 1620 syn keyword ngxDirectiveThirdParty contained rds_csv_field_separator | |
| 1621 syn keyword ngxDirectiveThirdParty contained rds_csv_row_terminator | |
| 596 | 1622 |
| 612 | 1623 " https://github.com/openresty/rds-json-nginx-module |
| 1624 syn keyword ngxDirectiveThirdParty contained rds_json | |
| 1625 syn keyword ngxDirectiveThirdParty contained rds_json_buffer_size | |
| 1626 syn keyword ngxDirectiveThirdParty contained rds_json_content_type | |
| 1627 syn keyword ngxDirectiveThirdParty contained rds_json_errcode_key | |
| 1628 syn keyword ngxDirectiveThirdParty contained rds_json_errstr_key | |
| 1629 syn keyword ngxDirectiveThirdParty contained rds_json_format | |
| 1630 syn keyword ngxDirectiveThirdParty contained rds_json_ret | |
| 1631 syn keyword ngxDirectiveThirdParty contained rds_json_root | |
| 1632 syn keyword ngxDirectiveThirdParty contained rds_json_success_property | |
| 1633 syn keyword ngxDirectiveThirdParty contained rds_json_user_property | |
| 596 | 1634 |
| 612 | 1635 " https://github.com/openresty/redis2-nginx-module |
| 1636 syn keyword ngxDirectiveThirdParty contained redis2_bind | |
| 1637 syn keyword ngxDirectiveThirdParty contained redis2_buffer_size | |
| 1638 syn keyword ngxDirectiveThirdParty contained redis2_connect_timeout | |
| 1639 syn keyword ngxDirectiveThirdParty contained redis2_literal_raw_query | |
| 1640 syn keyword ngxDirectiveThirdParty contained redis2_next_upstream | |
| 1641 syn keyword ngxDirectiveThirdParty contained redis2_pass | |
| 1642 syn keyword ngxDirectiveThirdParty contained redis2_query | |
| 1643 syn keyword ngxDirectiveThirdParty contained redis2_raw_queries | |
| 1644 syn keyword ngxDirectiveThirdParty contained redis2_raw_query | |
| 1645 syn keyword ngxDirectiveThirdParty contained redis2_read_timeout | |
| 1646 syn keyword ngxDirectiveThirdParty contained redis2_send_timeout | |
| 596 | 1647 |
| 612 | 1648 " https://github.com/arut/nginx-rtmp-module |
| 1649 syn keyword ngxDirectiveThirdParty contained ack_window | |
| 1650 syn keyword ngxDirectiveThirdParty contained application | |
| 1651 syn keyword ngxDirectiveThirdParty contained buffer | |
| 1652 syn keyword ngxDirectiveThirdParty contained buflen | |
| 1653 syn keyword ngxDirectiveThirdParty contained busy | |
| 1654 syn keyword ngxDirectiveThirdParty contained chunk_size | |
| 1655 syn keyword ngxDirectiveThirdParty contained dash | |
| 1656 syn keyword ngxDirectiveThirdParty contained dash_cleanup | |
| 1657 syn keyword ngxDirectiveThirdParty contained dash_fragment | |
| 1658 syn keyword ngxDirectiveThirdParty contained dash_nested | |
| 1659 syn keyword ngxDirectiveThirdParty contained dash_path | |
| 1660 syn keyword ngxDirectiveThirdParty contained dash_playlist_length | |
| 1661 syn keyword ngxDirectiveThirdParty contained drop_idle_publisher | |
| 1662 syn keyword ngxDirectiveThirdParty contained exec | |
| 1663 syn keyword ngxDirectiveThirdParty contained exec_block | |
| 1664 syn keyword ngxDirectiveThirdParty contained exec_kill_signal | |
| 1665 syn keyword ngxDirectiveThirdParty contained exec_options | |
| 1666 syn keyword ngxDirectiveThirdParty contained exec_play | |
| 1667 syn keyword ngxDirectiveThirdParty contained exec_play_done | |
| 1668 syn keyword ngxDirectiveThirdParty contained exec_publish | |
| 1669 syn keyword ngxDirectiveThirdParty contained exec_publish_done | |
| 1670 syn keyword ngxDirectiveThirdParty contained exec_pull | |
| 1671 syn keyword ngxDirectiveThirdParty contained exec_push | |
| 1672 syn keyword ngxDirectiveThirdParty contained exec_record_done | |
| 1673 syn keyword ngxDirectiveThirdParty contained exec_static | |
| 1674 syn keyword ngxDirectiveThirdParty contained hls_audio_buffer_size | |
| 1675 syn keyword ngxDirectiveThirdParty contained hls_base_url | |
| 1676 syn keyword ngxDirectiveThirdParty contained hls_cleanup | |
| 1677 syn keyword ngxDirectiveThirdParty contained hls_continuous | |
| 1678 syn keyword ngxDirectiveThirdParty contained hls_fragment_naming | |
| 1679 syn keyword ngxDirectiveThirdParty contained hls_fragment_naming_granularity | |
| 1680 syn keyword ngxDirectiveThirdParty contained hls_fragment_slicing | |
| 1681 syn keyword ngxDirectiveThirdParty contained hls_fragments_per_key | |
| 1682 syn keyword ngxDirectiveThirdParty contained hls_key_path | |
| 1683 syn keyword ngxDirectiveThirdParty contained hls_key_url | |
| 1684 syn keyword ngxDirectiveThirdParty contained hls_keys | |
| 1685 syn keyword ngxDirectiveThirdParty contained hls_max_audio_delay | |
| 1686 syn keyword ngxDirectiveThirdParty contained hls_max_fragment | |
| 1687 syn keyword ngxDirectiveThirdParty contained hls_muxdelay | |
| 1688 syn keyword ngxDirectiveThirdParty contained hls_nested | |
| 1689 syn keyword ngxDirectiveThirdParty contained hls_path | |
| 1690 syn keyword ngxDirectiveThirdParty contained hls_playlist_length | |
| 1691 syn keyword ngxDirectiveThirdParty contained hls_sync | |
| 1692 syn keyword ngxDirectiveThirdParty contained hls_type | |
| 1693 syn keyword ngxDirectiveThirdParty contained hls_variant | |
| 1694 syn keyword ngxDirectiveThirdParty contained idle_streams | |
| 1695 syn keyword ngxDirectiveThirdParty contained interleave | |
| 1696 syn keyword ngxDirectiveThirdParty contained live | |
| 1697 syn keyword ngxDirectiveThirdParty contained max_connections | |
| 1698 syn keyword ngxDirectiveThirdParty contained max_message | |
| 1699 syn keyword ngxDirectiveThirdParty contained max_streams | |
| 1700 syn keyword ngxDirectiveThirdParty contained meta | |
| 1701 syn keyword ngxDirectiveThirdParty contained netcall_buffer | |
| 1702 syn keyword ngxDirectiveThirdParty contained netcall_timeout | |
| 1703 syn keyword ngxDirectiveThirdParty contained notify_method | |
| 1704 syn keyword ngxDirectiveThirdParty contained notify_relay_redirect | |
| 1705 syn keyword ngxDirectiveThirdParty contained notify_update_strict | |
| 1706 syn keyword ngxDirectiveThirdParty contained notify_update_timeout | |
| 1707 syn keyword ngxDirectiveThirdParty contained on_connect | |
| 1708 syn keyword ngxDirectiveThirdParty contained on_disconnect | |
| 1709 syn keyword ngxDirectiveThirdParty contained on_done | |
| 1710 syn keyword ngxDirectiveThirdParty contained on_play | |
| 1711 syn keyword ngxDirectiveThirdParty contained on_play_done | |
| 1712 syn keyword ngxDirectiveThirdParty contained on_publish | |
| 1713 syn keyword ngxDirectiveThirdParty contained on_publish_done | |
| 1714 syn keyword ngxDirectiveThirdParty contained on_record_done | |
| 1715 syn keyword ngxDirectiveThirdParty contained on_update | |
| 1716 syn keyword ngxDirectiveThirdParty contained out_cork | |
| 1717 syn keyword ngxDirectiveThirdParty contained out_queue | |
| 1718 syn keyword ngxDirectiveThirdParty contained ping | |
| 1719 syn keyword ngxDirectiveThirdParty contained ping_timeout | |
| 1720 syn keyword ngxDirectiveThirdParty contained play | |
| 1721 syn keyword ngxDirectiveThirdParty contained play_local_path | |
| 1722 syn keyword ngxDirectiveThirdParty contained play_restart | |
| 1723 syn keyword ngxDirectiveThirdParty contained play_temp_path | |
| 1724 syn keyword ngxDirectiveThirdParty contained play_time_fix | |
| 1725 syn keyword ngxDirectiveThirdParty contained publish_notify | |
| 1726 syn keyword ngxDirectiveThirdParty contained publish_time_fix | |
| 1727 syn keyword ngxDirectiveThirdParty contained pull | |
| 1728 syn keyword ngxDirectiveThirdParty contained pull_reconnect | |
| 1729 syn keyword ngxDirectiveThirdParty contained push | |
| 1730 syn keyword ngxDirectiveThirdParty contained push_reconnect | |
| 1731 syn keyword ngxDirectiveThirdParty contained record | |
| 1732 syn keyword ngxDirectiveThirdParty contained record_append | |
| 1733 syn keyword ngxDirectiveThirdParty contained record_interval | |
| 1734 syn keyword ngxDirectiveThirdParty contained record_lock | |
| 1735 syn keyword ngxDirectiveThirdParty contained record_max_frames | |
| 1736 syn keyword ngxDirectiveThirdParty contained record_max_size | |
| 1737 syn keyword ngxDirectiveThirdParty contained record_notify | |
| 1738 syn keyword ngxDirectiveThirdParty contained record_path | |
| 1739 syn keyword ngxDirectiveThirdParty contained record_suffix | |
| 1740 syn keyword ngxDirectiveThirdParty contained record_unique | |
| 1741 syn keyword ngxDirectiveThirdParty contained recorder | |
| 1742 syn keyword ngxDirectiveThirdParty contained relay_buffer | |
| 1743 syn keyword ngxDirectiveThirdParty contained respawn | |
| 1744 syn keyword ngxDirectiveThirdParty contained respawn_timeout | |
| 1745 syn keyword ngxDirectiveThirdParty contained rtmp | |
| 1746 syn keyword ngxDirectiveThirdParty contained rtmp_auto_push | |
| 1747 syn keyword ngxDirectiveThirdParty contained rtmp_auto_push_reconnect | |
| 1748 syn keyword ngxDirectiveThirdParty contained rtmp_control | |
| 1749 syn keyword ngxDirectiveThirdParty contained rtmp_socket_dir | |
| 1750 syn keyword ngxDirectiveThirdParty contained rtmp_stat | |
| 1751 syn keyword ngxDirectiveThirdParty contained rtmp_stat_stylesheet | |
| 1752 syn keyword ngxDirectiveThirdParty contained session_relay | |
| 1753 syn keyword ngxDirectiveThirdParty contained so_keepalive | |
| 1754 syn keyword ngxDirectiveThirdParty contained stream_buckets | |
| 1755 syn keyword ngxDirectiveThirdParty contained sync | |
| 1756 syn keyword ngxDirectiveThirdParty contained wait_key | |
| 1757 syn keyword ngxDirectiveThirdParty contained wait_video | |
| 596 | 1758 |
| 612 | 1759 " https://github.com/openresty/set-misc-nginx-module |
| 1760 syn keyword ngxDirectiveThirdParty contained set_base32_alphabet | |
| 1761 syn keyword ngxDirectiveThirdParty contained set_base32_padding | |
| 1762 syn keyword ngxDirectiveThirdParty contained set_decode_base32 | |
| 1763 syn keyword ngxDirectiveThirdParty contained set_decode_base64 | |
| 673 | 1764 syn keyword ngxDirectiveThirdParty contained set_decode_base64url |
| 612 | 1765 syn keyword ngxDirectiveThirdParty contained set_decode_hex |
| 1766 syn keyword ngxDirectiveThirdParty contained set_encode_base32 | |
| 1767 syn keyword ngxDirectiveThirdParty contained set_encode_base64 | |
| 673 | 1768 syn keyword ngxDirectiveThirdParty contained set_encode_base64url |
| 612 | 1769 syn keyword ngxDirectiveThirdParty contained set_encode_hex |
| 1770 syn keyword ngxDirectiveThirdParty contained set_escape_uri | |
| 1771 syn keyword ngxDirectiveThirdParty contained set_formatted_gmt_time | |
| 1772 syn keyword ngxDirectiveThirdParty contained set_formatted_local_time | |
| 1773 syn keyword ngxDirectiveThirdParty contained set_hashed_upstream | |
| 1774 syn keyword ngxDirectiveThirdParty contained set_hmac_sha1 | |
| 673 | 1775 syn keyword ngxDirectiveThirdParty contained set_hmac_sha256 |
| 612 | 1776 syn keyword ngxDirectiveThirdParty contained set_if_empty |
| 1777 syn keyword ngxDirectiveThirdParty contained set_local_today | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1778 syn keyword ngxDirectiveThirdParty contained set_md5 |
| 612 | 1779 syn keyword ngxDirectiveThirdParty contained set_misc_base32_padding |
| 1780 syn keyword ngxDirectiveThirdParty contained set_quote_json_str | |
| 1781 syn keyword ngxDirectiveThirdParty contained set_quote_pgsql_str | |
| 1782 syn keyword ngxDirectiveThirdParty contained set_quote_sql_str | |
| 1783 syn keyword ngxDirectiveThirdParty contained set_random | |
| 1784 syn keyword ngxDirectiveThirdParty contained set_rotate | |
| 1785 syn keyword ngxDirectiveThirdParty contained set_secure_random_alphanum | |
| 1786 syn keyword ngxDirectiveThirdParty contained set_secure_random_lcalpha | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1787 syn keyword ngxDirectiveThirdParty contained set_sha1 |
| 612 | 1788 syn keyword ngxDirectiveThirdParty contained set_unescape_uri |
| 596 | 1789 |
| 612 | 1790 " https://github.com/sflow/nginx-sflow-module |
| 1791 syn keyword ngxDirectiveThirdParty contained sflow | |
| 1792 | |
| 1793 " https://github.com/nginx-shib/nginx-http-shibboleth | |
| 1794 syn keyword ngxDirectiveThirdParty contained shib_request | |
| 1795 syn keyword ngxDirectiveThirdParty contained shib_request_set | |
| 1796 syn keyword ngxDirectiveThirdParty contained shib_request_use_headers | |
| 596 | 1797 |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1798 " https://github.com/baysao/ngx_slowfs_cache |
| 612 | 1799 syn keyword ngxDirectiveThirdParty contained slowfs_big_file_size |
| 1800 syn keyword ngxDirectiveThirdParty contained slowfs_cache | |
| 1801 syn keyword ngxDirectiveThirdParty contained slowfs_cache_key | |
| 1802 syn keyword ngxDirectiveThirdParty contained slowfs_cache_min_uses | |
| 1803 syn keyword ngxDirectiveThirdParty contained slowfs_cache_path | |
| 1804 syn keyword ngxDirectiveThirdParty contained slowfs_cache_purge | |
| 1805 syn keyword ngxDirectiveThirdParty contained slowfs_cache_valid | |
| 1806 syn keyword ngxDirectiveThirdParty contained slowfs_temp_path | |
| 596 | 1807 |
| 612 | 1808 " https://github.com/openresty/srcache-nginx-module |
| 1809 syn keyword ngxDirectiveThirdParty contained srcache_buffer | |
| 1810 syn keyword ngxDirectiveThirdParty contained srcache_default_expire | |
| 1811 syn keyword ngxDirectiveThirdParty contained srcache_fetch | |
| 1812 syn keyword ngxDirectiveThirdParty contained srcache_fetch_skip | |
| 1813 syn keyword ngxDirectiveThirdParty contained srcache_header_buffer_size | |
| 1814 syn keyword ngxDirectiveThirdParty contained srcache_ignore_content_encoding | |
| 1815 syn keyword ngxDirectiveThirdParty contained srcache_max_expire | |
| 1816 syn keyword ngxDirectiveThirdParty contained srcache_methods | |
| 1817 syn keyword ngxDirectiveThirdParty contained srcache_request_cache_control | |
| 1818 syn keyword ngxDirectiveThirdParty contained srcache_response_cache_control | |
| 1819 syn keyword ngxDirectiveThirdParty contained srcache_store | |
| 1820 syn keyword ngxDirectiveThirdParty contained srcache_store_hide_header | |
| 1821 syn keyword ngxDirectiveThirdParty contained srcache_store_max_size | |
| 1822 syn keyword ngxDirectiveThirdParty contained srcache_store_no_cache | |
| 1823 syn keyword ngxDirectiveThirdParty contained srcache_store_no_store | |
| 1824 syn keyword ngxDirectiveThirdParty contained srcache_store_pass_header | |
| 1825 syn keyword ngxDirectiveThirdParty contained srcache_store_private | |
| 1826 syn keyword ngxDirectiveThirdParty contained srcache_store_ranges | |
| 1827 syn keyword ngxDirectiveThirdParty contained srcache_store_skip | |
| 1828 syn keyword ngxDirectiveThirdParty contained srcache_store_statuses | |
| 596 | 1829 |
| 612 | 1830 " https://github.com/kaltura/nginx-vod-module |
| 1831 syn keyword ngxDirectiveThirdParty contained vod | |
| 1832 syn keyword ngxDirectiveThirdParty contained vod_align_segments_to_key_frames | |
| 1833 syn keyword ngxDirectiveThirdParty contained vod_apply_dynamic_mapping | |
| 1834 syn keyword ngxDirectiveThirdParty contained vod_base_url | |
| 1835 syn keyword ngxDirectiveThirdParty contained vod_bootstrap_segment_durations | |
| 1836 syn keyword ngxDirectiveThirdParty contained vod_cache_buffer_size | |
| 1837 syn keyword ngxDirectiveThirdParty contained vod_clip_from_param_name | |
| 1838 syn keyword ngxDirectiveThirdParty contained vod_clip_to_param_name | |
| 1839 syn keyword ngxDirectiveThirdParty contained vod_drm_clear_lead_segment_count | |
| 1840 syn keyword ngxDirectiveThirdParty contained vod_drm_enabled | |
| 1841 syn keyword ngxDirectiveThirdParty contained vod_drm_info_cache | |
| 1842 syn keyword ngxDirectiveThirdParty contained vod_drm_max_info_length | |
| 1843 syn keyword ngxDirectiveThirdParty contained vod_drm_request_uri | |
| 1844 syn keyword ngxDirectiveThirdParty contained vod_drm_single_key | |
| 1845 syn keyword ngxDirectiveThirdParty contained vod_drm_upstream_location | |
| 1846 syn keyword ngxDirectiveThirdParty contained vod_dynamic_clip_map_uri | |
| 1847 syn keyword ngxDirectiveThirdParty contained vod_dynamic_mapping_cache | |
| 1848 syn keyword ngxDirectiveThirdParty contained vod_encryption_iv_seed | |
| 1849 syn keyword ngxDirectiveThirdParty contained vod_expires | |
| 1850 syn keyword ngxDirectiveThirdParty contained vod_expires_live | |
| 1851 syn keyword ngxDirectiveThirdParty contained vod_expires_live_time_dependent | |
| 1852 syn keyword ngxDirectiveThirdParty contained vod_fallback_upstream_location | |
| 1853 syn keyword ngxDirectiveThirdParty contained vod_force_continuous_timestamps | |
| 1854 syn keyword ngxDirectiveThirdParty contained vod_force_playlist_type_vod | |
| 629 | 1855 syn keyword ngxDirectiveThirdParty contained vod_force_sequence_index |
| 612 | 1856 syn keyword ngxDirectiveThirdParty contained vod_gop_look_ahead |
| 1857 syn keyword ngxDirectiveThirdParty contained vod_gop_look_behind | |
| 1858 syn keyword ngxDirectiveThirdParty contained vod_ignore_edit_list | |
| 1859 syn keyword ngxDirectiveThirdParty contained vod_initial_read_size | |
| 1860 syn keyword ngxDirectiveThirdParty contained vod_lang_param_name | |
| 1861 syn keyword ngxDirectiveThirdParty contained vod_last_modified | |
| 1862 syn keyword ngxDirectiveThirdParty contained vod_last_modified_types | |
| 1863 syn keyword ngxDirectiveThirdParty contained vod_live_mapping_cache | |
| 1864 syn keyword ngxDirectiveThirdParty contained vod_live_response_cache | |
| 1865 syn keyword ngxDirectiveThirdParty contained vod_live_window_duration | |
| 1866 syn keyword ngxDirectiveThirdParty contained vod_manifest_duration_policy | |
| 1867 syn keyword ngxDirectiveThirdParty contained vod_manifest_segment_durations_mode | |
| 1868 syn keyword ngxDirectiveThirdParty contained vod_mapping_cache | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1869 syn keyword ngxDirectiveThirdParty contained vod_max_frame_count |
| 612 | 1870 syn keyword ngxDirectiveThirdParty contained vod_max_frames_size |
| 1871 syn keyword ngxDirectiveThirdParty contained vod_max_mapping_response_size | |
| 1872 syn keyword ngxDirectiveThirdParty contained vod_max_metadata_size | |
| 1873 syn keyword ngxDirectiveThirdParty contained vod_max_upstream_headers_size | |
| 1874 syn keyword ngxDirectiveThirdParty contained vod_media_set_map_uri | |
| 1875 syn keyword ngxDirectiveThirdParty contained vod_media_set_override_json | |
| 1876 syn keyword ngxDirectiveThirdParty contained vod_metadata_cache | |
| 1877 syn keyword ngxDirectiveThirdParty contained vod_min_single_nalu_per_frame_segment | |
| 1878 syn keyword ngxDirectiveThirdParty contained vod_mode | |
| 1879 syn keyword ngxDirectiveThirdParty contained vod_multi_uri_suffix | |
| 1880 syn keyword ngxDirectiveThirdParty contained vod_notification_uri | |
| 1881 syn keyword ngxDirectiveThirdParty contained vod_open_file_thread_pool | |
| 1882 syn keyword ngxDirectiveThirdParty contained vod_output_buffer_pool | |
| 1883 syn keyword ngxDirectiveThirdParty contained vod_parse_hdlr_name | |
| 673 | 1884 syn keyword ngxDirectiveThirdParty contained vod_parse_udta_name |
| 612 | 1885 syn keyword ngxDirectiveThirdParty contained vod_path_response_postfix |
| 1886 syn keyword ngxDirectiveThirdParty contained vod_path_response_prefix | |
| 1887 syn keyword ngxDirectiveThirdParty contained vod_performance_counters | |
| 1888 syn keyword ngxDirectiveThirdParty contained vod_proxy_header_name | |
| 1889 syn keyword ngxDirectiveThirdParty contained vod_proxy_header_value | |
| 1890 syn keyword ngxDirectiveThirdParty contained vod_redirect_segments_url | |
| 1891 syn keyword ngxDirectiveThirdParty contained vod_remote_upstream_location | |
| 1892 syn keyword ngxDirectiveThirdParty contained vod_response_cache | |
| 1893 syn keyword ngxDirectiveThirdParty contained vod_secret_key | |
| 1894 syn keyword ngxDirectiveThirdParty contained vod_segment_count_policy | |
| 1895 syn keyword ngxDirectiveThirdParty contained vod_segment_duration | |
|
704
1e0f578f6752
Update vendor and add support for vim packs
nanaya <me@nanaya.net>
parents:
673
diff
changeset
|
1896 syn keyword ngxDirectiveThirdParty contained vod_segment_max_frame_count |
| 612 | 1897 syn keyword ngxDirectiveThirdParty contained vod_segments_base_url |
| 1898 syn keyword ngxDirectiveThirdParty contained vod_source_clip_map_uri | |
| 1899 syn keyword ngxDirectiveThirdParty contained vod_speed_param_name | |
| 1900 syn keyword ngxDirectiveThirdParty contained vod_status | |
| 1901 syn keyword ngxDirectiveThirdParty contained vod_time_shift_param_name | |
| 1902 syn keyword ngxDirectiveThirdParty contained vod_tracks_param_name | |
| 1903 syn keyword ngxDirectiveThirdParty contained vod_upstream_extra_args | |
| 1904 syn keyword ngxDirectiveThirdParty contained vod_upstream_location | |
| 596 | 1905 |
| 612 | 1906 " https://github.com/vozlt/nginx-module-vts |
| 1907 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status | |
| 1908 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_average_method | |
| 1909 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_bypass_limit | |
| 1910 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_bypass_stats | |
| 1911 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display | |
| 1912 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display_format | |
| 1913 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display_jsonp | |
| 1914 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_display_sum_key | |
| 1915 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_dump | |
| 1916 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter | |
| 1917 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_by_host | |
| 1918 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_by_set_key | |
| 1919 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_check_duplicate | |
| 623 | 1920 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_filter_max_node |
| 1921 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_histogram_buckets | |
| 612 | 1922 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit |
| 1923 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit_check_duplicate | |
| 1924 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit_traffic | |
| 1925 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_limit_traffic_by_set_key | |
| 1926 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_set_by_filter | |
| 1927 syn keyword ngxDirectiveThirdParty contained vhost_traffic_status_zone | |
| 596 | 1928 |
| 612 | 1929 " https://github.com/openresty/xss-nginx-module |
| 1930 syn keyword ngxDirectiveThirdParty contained xss_callback_arg | |
| 1931 syn keyword ngxDirectiveThirdParty contained xss_check_status | |
| 1932 syn keyword ngxDirectiveThirdParty contained xss_get | |
| 1933 syn keyword ngxDirectiveThirdParty contained xss_input_types | |
| 1934 syn keyword ngxDirectiveThirdParty contained xss_output_type | |
| 1935 syn keyword ngxDirectiveThirdParty contained xss_override_status | |
| 596 | 1936 |
| 642 | 1937 " https://github.com/tg123/websockify-nginx-module |
| 1938 syn keyword ngxDirectiveThirdParty contained websockify_buffer_size | |
| 1939 syn keyword ngxDirectiveThirdParty contained websockify_connect_timeout | |
| 1940 syn keyword ngxDirectiveThirdParty contained websockify_pass | |
| 1941 syn keyword ngxDirectiveThirdParty contained websockify_read_timeout | |
| 1942 syn keyword ngxDirectiveThirdParty contained websockify_send_timeout | |
| 1943 | |
| 726 | 1944 " https://github.com/vozlt/nginx-module-sts |
| 1945 syn keyword ngxDirectiveThirdParty contained stream_server_traffic_status | |
| 1946 syn keyword ngxDirectiveThirdParty contained stream_server_traffic_status_average_method | |
| 1947 syn keyword ngxDirectiveThirdParty contained stream_server_traffic_status_display | |
| 1948 syn keyword ngxDirectiveThirdParty contained stream_server_traffic_status_display_format | |
| 1949 syn keyword ngxDirectiveThirdParty contained stream_server_traffic_status_display_jsonp | |
| 1950 syn keyword ngxDirectiveThirdParty contained stream_server_traffic_status_zone | |
| 1951 | |
| 596 | 1952 " highlight |
| 1953 | |
| 661 | 1954 hi def link ngxComment Comment |
| 1955 hi def link ngxParamComment Comment | |
| 1956 hi def link ngxListenComment Comment | |
| 1957 hi def link ngxVariable Identifier | |
| 1958 hi def link ngxVariableString PreProc | |
| 1959 hi def link ngxString String | |
| 1960 hi def link ngxListenString String | |
| 596 | 1961 |
| 661 | 1962 hi def link ngxBoolean Boolean |
| 1963 hi def link ngxDirectiveBlock Statement | |
| 1964 hi def link ngxDirectiveImportant Type | |
| 1965 hi def link ngxDirectiveListen Type | |
| 1966 hi def link ngxDirectiveControl Keyword | |
| 1967 hi def link ngxDirectiveError Constant | |
| 1968 hi def link ngxDirectiveDeprecated Error | |
| 1969 hi def link ngxDirective Identifier | |
| 1970 hi def link ngxDirectiveThirdParty Special | |
| 1971 hi def link ngxDirectiveThirdPartyDeprecated Error | |
| 596 | 1972 |
| 661 | 1973 hi def link ngxListenOptions Keyword |
| 1974 hi def link ngxListenOptionsDeprecated Error | |
| 596 | 1975 |
| 673 | 1976 let &cpo = s:save_cpo |
| 1977 unlet s:save_cpo | |
| 1978 | |
| 596 | 1979 let b:current_syntax = "nginx" |
