@enjoys/context-engine 1.0.7 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/commands/dockerfile.json +66 -0
- package/data/commands/lua.json +66 -0
- package/data/commands/manifest.json +54 -24
- package/data/commands/sql.json +34 -0
- package/data/completion/caddy.json +1589 -0
- package/data/completion/dockerfile.json +1062 -313
- package/data/completion/lua.json +2283 -617
- package/data/completion/nginx.json +804 -1
- package/data/completion/redis-cli.json +3405 -0
- package/data/completion/sql.json +2684 -552
- package/data/defination/caddy.json +428 -0
- package/data/defination/dockerfile.json +211 -29
- package/data/defination/lua.json +875 -125
- package/data/defination/nginx.json +164 -1
- package/data/defination/redis-cli.json +1853 -0
- package/data/defination/sql.json +998 -326
- package/data/hover/caddy.json +458 -0
- package/data/hover/dockerfile.json +180 -42
- package/data/hover/lua.json +775 -69
- package/data/hover/nginx.json +760 -0
- package/data/hover/redis-cli.json +1088 -0
- package/data/hover/sql.json +1119 -76
- package/data/manifest.json +27 -3
- package/package.json +1 -1
|
@@ -510,6 +510,169 @@
|
|
|
510
510
|
"description": "Client IP in binary form (4 bytes for IPv4). Efficient key for limit_req_zone/limit_conn_zone.",
|
|
511
511
|
"type": "variable",
|
|
512
512
|
"module": "ngx_http_core_module"
|
|
513
|
+
},
|
|
514
|
+
"auth_request": {
|
|
515
|
+
"signature": "auth_request uri | off",
|
|
516
|
+
"description": "Implements client authorization based on the result of a subrequest. If subrequest returns 2xx, access is allowed; 401 or 403 denies access.",
|
|
517
|
+
"module": "ngx_http_auth_request_module"
|
|
518
|
+
},
|
|
519
|
+
"auth_request_set": {
|
|
520
|
+
"signature": "auth_request_set $variable value",
|
|
521
|
+
"description": "Set a variable from the authentication subrequest response.",
|
|
522
|
+
"module": "ngx_http_auth_request_module"
|
|
523
|
+
},
|
|
524
|
+
"real_ip_header": {
|
|
525
|
+
"signature": "real_ip_header field | proxy_protocol",
|
|
526
|
+
"description": "Defines the request header field used to extract the real client IP address.",
|
|
527
|
+
"module": "ngx_http_realip_module"
|
|
528
|
+
},
|
|
529
|
+
"set_real_ip_from": {
|
|
530
|
+
"signature": "set_real_ip_from address | CIDR",
|
|
531
|
+
"description": "Defines trusted addresses that send correct replacement IP addresses.",
|
|
532
|
+
"module": "ngx_http_realip_module"
|
|
533
|
+
},
|
|
534
|
+
"proxy_cache_key": {
|
|
535
|
+
"signature": "proxy_cache_key string",
|
|
536
|
+
"description": "Defines a key for caching. Default: $scheme$proxy_host$request_uri.",
|
|
537
|
+
"module": "ngx_http_proxy_module"
|
|
538
|
+
},
|
|
539
|
+
"proxy_cache_bypass": {
|
|
540
|
+
"signature": "proxy_cache_bypass string ...",
|
|
541
|
+
"description": "Defines conditions under which the response will not be taken from cache. If any value is non-empty and non-zero, the response is not cached.",
|
|
542
|
+
"module": "ngx_http_proxy_module"
|
|
543
|
+
},
|
|
544
|
+
"proxy_next_upstream": {
|
|
545
|
+
"signature": "proxy_next_upstream error | timeout | ...",
|
|
546
|
+
"description": "Specifies in which cases a request should be passed to the next server in the upstream.",
|
|
547
|
+
"module": "ngx_http_proxy_module"
|
|
548
|
+
},
|
|
549
|
+
"proxy_buffer_size": {
|
|
550
|
+
"signature": "proxy_buffer_size size",
|
|
551
|
+
"description": "Sets the size of the buffer for reading the first part of the response from the proxied server. Default: 4k|8k.",
|
|
552
|
+
"module": "ngx_http_proxy_module"
|
|
553
|
+
},
|
|
554
|
+
"uwsgi_pass": {
|
|
555
|
+
"signature": "uwsgi_pass address",
|
|
556
|
+
"description": "Pass request to a uWSGI server. Address can be unix socket or TCP address.",
|
|
557
|
+
"module": "ngx_http_uwsgi_module"
|
|
558
|
+
},
|
|
559
|
+
"grpc_pass": {
|
|
560
|
+
"signature": "grpc_pass address",
|
|
561
|
+
"description": "Sets the gRPC server address. Address can use grpc:// or grpcs:// scheme.",
|
|
562
|
+
"module": "ngx_http_grpc_module"
|
|
563
|
+
},
|
|
564
|
+
"internal": {
|
|
565
|
+
"signature": "internal",
|
|
566
|
+
"description": "Specifies that a location can only be used for internal requests: redirects, error_page, auth_request subrequests.",
|
|
567
|
+
"module": "ngx_http_core_module"
|
|
568
|
+
},
|
|
569
|
+
"stub_status": {
|
|
570
|
+
"signature": "stub_status",
|
|
571
|
+
"description": "Provides access to basic status information: active connections, accepts, handled, requests, reading, writing, waiting.",
|
|
572
|
+
"module": "ngx_http_stub_status_module"
|
|
573
|
+
},
|
|
574
|
+
"ssl_session_tickets": {
|
|
575
|
+
"signature": "ssl_session_tickets on | off",
|
|
576
|
+
"description": "Enables or disables session resumption through TLS session tickets.",
|
|
577
|
+
"module": "ngx_http_ssl_module"
|
|
578
|
+
},
|
|
579
|
+
"ssl_trusted_certificate": {
|
|
580
|
+
"signature": "ssl_trusted_certificate file",
|
|
581
|
+
"description": "Specifies a file with trusted CA certificates used to verify client certificates and OCSP responses.",
|
|
582
|
+
"module": "ngx_http_ssl_module"
|
|
583
|
+
},
|
|
584
|
+
"ssl_stapling_verify": {
|
|
585
|
+
"signature": "ssl_stapling_verify on | off",
|
|
586
|
+
"description": "Enables or disables verification of OCSP responses by the server.",
|
|
587
|
+
"module": "ngx_http_ssl_module"
|
|
588
|
+
},
|
|
589
|
+
"worker_rlimit_nofile": {
|
|
590
|
+
"signature": "worker_rlimit_nofile number",
|
|
591
|
+
"description": "Maximum number of open files (RLIMIT_NOFILE) for worker processes.",
|
|
592
|
+
"module": "ngx_core_module"
|
|
593
|
+
},
|
|
594
|
+
"multi_accept": {
|
|
595
|
+
"signature": "multi_accept on | off",
|
|
596
|
+
"description": "If enabled, worker process will accept all new connections at once. Default: off.",
|
|
597
|
+
"module": "ngx_core_module"
|
|
598
|
+
},
|
|
599
|
+
"sub_filter": {
|
|
600
|
+
"signature": "sub_filter string replacement",
|
|
601
|
+
"description": "Sets a string to replace in the response body. Matching is case-insensitive.",
|
|
602
|
+
"module": "ngx_http_sub_module"
|
|
603
|
+
},
|
|
604
|
+
"open_file_cache": {
|
|
605
|
+
"signature": "open_file_cache max=N [inactive=time] | off",
|
|
606
|
+
"description": "Cache open file descriptors, sizes, modification times, directory lookups, and file lookup errors.",
|
|
607
|
+
"module": "ngx_http_core_module"
|
|
608
|
+
},
|
|
609
|
+
"proxy_cookie_path": {
|
|
610
|
+
"signature": "proxy_cookie_path path replacement",
|
|
611
|
+
"description": "Sets text that should be changed in the path attribute of Set-Cookie headers from proxied server.",
|
|
612
|
+
"module": "ngx_http_proxy_module"
|
|
613
|
+
},
|
|
614
|
+
"proxy_cookie_domain": {
|
|
615
|
+
"signature": "proxy_cookie_domain domain replacement",
|
|
616
|
+
"description": "Sets text that should be changed in the domain attribute of Set-Cookie headers from proxied server.",
|
|
617
|
+
"module": "ngx_http_proxy_module"
|
|
618
|
+
},
|
|
619
|
+
"keepalive_requests": {
|
|
620
|
+
"signature": "keepalive_requests number",
|
|
621
|
+
"description": "Maximum number of requests per keep-alive connection. Default: 1000.",
|
|
622
|
+
"module": "ngx_http_core_module"
|
|
623
|
+
},
|
|
624
|
+
"mail": {
|
|
625
|
+
"signature": "mail { ... }",
|
|
626
|
+
"description": "Provides the configuration file context for mail proxy server directives (IMAP, POP3, SMTP).",
|
|
627
|
+
"module": "ngx_mail_core_module"
|
|
628
|
+
},
|
|
629
|
+
"$request_method": {
|
|
630
|
+
"description": "Request method (GET, POST, etc.)."
|
|
631
|
+
},
|
|
632
|
+
"$server_name": {
|
|
633
|
+
"description": "Name of the server that accepted a request."
|
|
634
|
+
},
|
|
635
|
+
"$server_port": {
|
|
636
|
+
"description": "Port of the server that accepted a request."
|
|
637
|
+
},
|
|
638
|
+
"$http_user_agent": {
|
|
639
|
+
"description": "Client User-Agent header value."
|
|
640
|
+
},
|
|
641
|
+
"$http_referer": {
|
|
642
|
+
"description": "Client Referer header value."
|
|
643
|
+
},
|
|
644
|
+
"$document_root": {
|
|
645
|
+
"description": "Root or alias directive value for the current request."
|
|
646
|
+
},
|
|
647
|
+
"$fastcgi_script_name": {
|
|
648
|
+
"description": "Request URI, or request URI with index appended if URI ends with /."
|
|
649
|
+
},
|
|
650
|
+
"$query_string": {
|
|
651
|
+
"description": "Same as $args; the query string parameters."
|
|
652
|
+
},
|
|
653
|
+
"$request_time": {
|
|
654
|
+
"description": "Request processing time in seconds with millisecond resolution."
|
|
655
|
+
},
|
|
656
|
+
"$upstream_response_time": {
|
|
657
|
+
"description": "Time spent on receiving the response from upstream server."
|
|
658
|
+
},
|
|
659
|
+
"$body_bytes_sent": {
|
|
660
|
+
"description": "Number of bytes sent to a client (not counting response header)."
|
|
661
|
+
},
|
|
662
|
+
"$status": {
|
|
663
|
+
"description": "Response status code."
|
|
664
|
+
},
|
|
665
|
+
"$time_local": {
|
|
666
|
+
"description": "Local time in Common Log Format."
|
|
667
|
+
},
|
|
668
|
+
"$time_iso8601": {
|
|
669
|
+
"description": "Local time in ISO 8601 format."
|
|
670
|
+
},
|
|
671
|
+
"$realpath_root": {
|
|
672
|
+
"description": "Absolute pathname for root/alias of current request with symlinks resolved."
|
|
673
|
+
},
|
|
674
|
+
"$is_args": {
|
|
675
|
+
"description": "\"?\" if request has query string, empty otherwise."
|
|
513
676
|
}
|
|
514
677
|
}
|
|
515
|
-
}
|
|
678
|
+
}
|