schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
liquibase-3.2.json | filter | A class name that allows you to create custom filters. | {"type": "string", "default": ""} |
liquibase-3.2.json | context | Appends a context (using an AND statement) to all contained changesets. | {"type": "string", "default": ""} |
resources.json | The resource configurations mapped to tenant id | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": {}, "definitions": {"resourceTypeConfiguration": {"type": "object", "properties": {"readModels": {"type": "object"}, "eventStore": {"type": "object"}}, "additionalProperties": true, "required": ["readModels", "eventStore"]}}} |
|
resources.json | resourceTypeConfiguration | The configuration of a resource type | {"type": "object", "properties": {"readModels": {"type": "object"}, "eventStore": {"type": "object"}}, "additionalProperties": true, "required": ["readModels", "eventStore"]} |
resources.json | readModels | Configuration for the resource type for read models | {"type": "object"} |
resources.json | eventStore | Configuration for the resource type for the event store | {"type": "object"} |
jd2mcr.schema.json | An array of crawler rules.
- Anything prefixed as "HTML RegEx" will do Java-flavored pattern-matching on the page's raw (unmodified by javascript) HTML. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["enabled", "name", "rule", "pattern"], "properties": {"enabled": {"type": "boolean"}, "cookies": {"examples": [[["cookieName", "cookieValue"]]], "type": "array", "items": {"type": "array", "items": [{"type": "string"}, {"type": "string"}]}}, "updateCookies": {"type": "boolean"}, "logging": {"type": "boolean"}, "maxDecryptDepth": {"examples": [1], "type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "pattern": {"examples": ["https?://www\\.example\\.com/subdir1/subdir2/subdir3"], "type": "string", "format": "regex"}, "rule": {"enum": ["DEEPDECRYPT", "REWRITE", "DIRECTHTTP", "FOLLOWREDIRECT", "SUBMITFORM"], "type": "string"}, "packageNamePattern": {"examples": ["<title>(.*?)</title>"], "type": "string", "format": "regex"}, "passwordPattern": {"examples": ["password:([^>]+)>"], "type": "string", "format": "regex"}, "formPattern": {"examples": ["<form id=\"example\">(.*?)</form>"], "type": "string", "format": "regex"}, "deepPattern": {"examples": ["(https?://absolute\\.url\\.example\\.com/subdir1/.*?\\.ext)", "\"((?:https?://missing\\.domain\\.example\\.com\\)?/partial_url_existing_in_page)\""], "oneOf": [{"type": "string"}, {"type": "null"}], "format": "regex"}, "rewriteReplaceWith": {"examples": ["https://example.com/$1"], "type": "string", "format": "regex"}}, "allOf": [{"if": {"properties": {"rule": {"not": {"const": "DEEPDECRYPT"}}}}, "then": {"properties": {"deepPattern": {"type": "null"}, "packageNamePattern": {"type": "null"}, "passwordPattern": {"type": "null"}}}}, {"if": {"properties": {"rule": {"not": {"const": "REWRITE"}}}}, "then": {"properties": {"rewriteReplaceWith": {"type": "null"}}}}, {"if": {"properties": {"rule": {"not": {"oneOf": [{"const": "DIRECTHTTP"}, {"const": "DEEPDECRYPT"}, {"const": "SUBMITFORM"}, {"const": "FOLLOWREDIRECT"}]}}}}, "then": {"properties": {"updateCookies": {"type": "null"}, "cookies": {"type": "null"}}}}]}} |
|
jd2mcr.schema.json | enabled | - Type: Boolean
- Applies to rule: ALL
- Purpose: Enables or disables this rule | {"type": "boolean"} |
jd2mcr.schema.json | cookies | - Type: Array of length-2 Arrays
- Applies to rule: DIRECTHTTP, DEEPDECRYPT, SUBMITFORM or FOLLOWREDIRECT
- Purpose: A list of length-2 arrays in the form [["cookieName", "cookieValue"],[..., ...]...]. Here you can put in your personal cookies e.g. login cookies of websites which JD otherwise fails to parse.Also if "updateCookies" is enabled, JD will update these with all cookies it receives from the website(s) that match the "pattern" property. | {"examples": [[["cookieName", "cookieValue"]]], "type": "array", "items": {"type": "array", "items": [{"type": "string"}, {"type": "string"}]}} |
jd2mcr.schema.json | updateCookies | - Type: Boolean
- Applies to rule: DIRECTHTTP, DEEPDECRYPT, SUBMITFORM or FOLLOWREDIRECT
- Purpose: If the target websites returns new cookies, save these inside this rule and update this rule. | {"type": "boolean"} |
jd2mcr.schema.json | logging | - Type: Boolean
- Applies to rule: ALL
- Purpose: Enable this for support purposes. Logs of your LinkCrawler Rules can be found in your JD install dir/logs/: LinkCrawlerRule.<RuleID>.log.0 and /LinkCrawlerDeep.* | {"type": "boolean"} |
jd2mcr.schema.json | maxDecryptDepth | - Type: Integer
- Applies to rule: ALL
- Purpose: How many layers deep do should your rule crawl (e.g. rule returns URLs matching the same rule again recursively - how often is this chain allowed to happen?) | {"examples": [1], "type": "integer"} |
jd2mcr.schema.json | id | - Type: Integer
- Applies to rule: ALL
- Purpose: Auto generated ID of the rule. Normally leave this blank and JD2 will autoinsert. | {"type": "integer"} |
jd2mcr.schema.json | name | - Type: String
- Applies to rule: ALL
- Purpose: name of the rule. | {"type": "string"} |
jd2mcr.schema.json | pattern | - Type: RegEx
- Applies to rule: ALL
- Purpose: defines on which URLs will this rule apply by matching it to the pattern | {"examples": ["https?://www\\.example\\.com/subdir1/subdir2/subdir3"], "type": "string", "format": "regex"} |
jd2mcr.schema.json | packageNamePattern | - Type: HTML RegEx
- Applies to rule: DEEPDECRYPT
- Purpose: All URLs crawled by this rule will be grouped into the same package that is the HTML RegEx's first capture | {"examples": ["<title>(.*?)</title>"], "type": "string", "format": "regex"} |
jd2mcr.schema.json | passwordPattern | - Type: HTML RegEx or null
- Applies to rule: DEEPDECRYPT
- Purpose: Matches against archive extraction password that may be found as text inside the page's (unmodified by javascript) HTML code. First returned capture must be the password. | {"examples": ["password:([^>]+)>"], "type": "string", "format": "regex"} |
jd2mcr.schema.json | formPattern | - Type: HTML RegEx
- Applies to rule: DEEPDECRYPT
- Purpose: | {"examples": ["<form id=\"example\">(.*?)</form>"], "type": "string", "format": "regex"} |
jd2mcr.schema.json | deepPattern | - Type: HTML RegEx or null
- Applies to rule: DEEPDECRYPT
- Purpose: Which URLs should this rule look for inside the page's (unmodified by javascript) HTML code. null (or blank) = auto scan and return all supported URLs found in HTML code.
Keep in mind that, if the url's found in the html are relative (e.g. starting with a slash / character instead of a protocol like http or a domain (website root) name) you WILL have to enclose the entire expression in quotes (outside of the parentheses that do capturing) like \"(...)\" AND enclose the part that would match the missing part of the url (i.e. from the protocol to the slash-or-other-character it begins with) in an 'OPTIONAL, NON CAPTURING' group (?:...)?. Resulting in the following pattern for pretty much every case \"((?:missing part of full url)?rest of url that is in the html)\" | {"examples": ["(https?://absolute\\.url\\.example\\.com/subdir1/.*?\\.ext)", "\"((?:https?://missing\\.domain\\.example\\.com\\)?/partial_url_existing_in_page)\""], "oneOf": [{"type": "string"}, {"type": "null"}], "format": "regex"} |
jd2mcr.schema.json | rewriteReplaceWith | - Type: String
- Applies to rule: REWRITE
- Purpose:Pattern for new URL, can use captures from "pattern" in the $1 form | {"examples": ["https://example.com/$1"], "type": "string", "format": "regex"} |
3.0.schema.json | Roadrunner config file schema version 3 | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": true, "minProperties": 1, "properties": {"version": {"type": "string", "default": "3", "enum": ["3"]}, "centrifuge": {"type": "object", "properties": {"proxy_address": {"type": "string", "default": "tcp://127.0.0.1:30000"}, "grpc_api_address": {"type": "string", "default": "tcp://127.0.0.1:30000"}, "use_compressor": {"type": "boolean", "default": false}, "version": {"type": "string", "default": "v1.0.0"}, "name": {"type": "string", "default": "roadrunner"}, "pool": {}, "tls": {"type": "object", "properties": {"cert": {"type": "string", "minLength": 1, "examples": ["/ssl/server.crt"]}, "key": {"type": "string", "minLength": 1, "examples": ["/ssl/server.key"]}}}}}, "rpc": {"type": "object", "properties": {"listen": {"type": "string", "default": "tcp://127.0.0.1:6001", "examples": ["tcp://127.0.0.1:6001"], "pattern": "^tcp://[0-9a-zA-Z_.-]+:[0-9]{1,5}$"}}}, "server": {"type": "object", "properties": {"after_init": {"type": "object", "properties": {"command": {"type": "string", "examples": ["php not-worker.php", "sh script.sh", "start script.bat"]}, "exec_timeout": {"default": "60s"}, "env": {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}}}}, "on_init": {"type": "object", "properties": {"command": {"type": "string", "examples": ["php not-worker.php", "sh script.sh", "start script.bat"]}, "exec_timeout": {"default": "60s"}, "env": {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}}}}, "command": {"type": "string", "examples": ["php psr-worker.php"]}, "user": {"type": "string", "default": "", "examples": ["www-data"]}, "group": {"type": "string", "default": "", "examples": ["www-data"]}, "env": {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}}, "relay": {"type": "string", "default": "pipes", "examples": ["pipes", "tcp://127.0.0.1:6002", "unix:///var/run/rr.sock"]}, "relay_timeout": {"default": "60s"}}, "required": ["command"]}, "logs": {"type": "object", "properties": {"mode": {"default": "development"}, "level": {"default": "debug"}, "encoding": {"default": "console"}, "output": {"default": "stderr"}, "err_output": {"default": "stderr"}, "channels": {"type": "object", "additionalProperties": {"type": "object", "properties": {"mode": {}, "level": {}, "encoding": {}, "output": {}, "err_output": {}}}}, "file_logger_options": {"type": "object", "properties": {"log_output": {"type": "string"}, "max_size": {"type": "integer"}, "max_age": {"type": "integer"}, "max_backups": {"type": "integer"}, "compress": {"type": "boolean"}}}}}, "temporal": {"type": "object", "properties": {"address": {"type": "string", "default": "127.0.0.1:7233"}, "cache_size": {"type": "integer", "default": 10000}, "namespace": {"type": "string", "default": "default"}, "metrics": {"type": "object", "default": null, "properties": {"driver": {"type": "string", "enum": ["prometheus", "statsd"], "default": "prometheus"}}, "anyOf": [{"type": "object", "properties": {"address": {"type": "string", "default": "127.0.0.1:9091"}, "type": {"type": "string", "anyOf": [{"type": "string", "examples": ["summary", "histogram"]}]}, "prefix": {"type": "string", "default": null}}}, {"properties": {"host_port": {"type": "string", "default": "127.0.0.1:8125"}, "prefix": {"type": "string", "default": null}, "flush_interval": {"type": "string", "default": "1s"}, "flush_bytes": {"type": "integer", "default": 1432}, "tags": {}, "tag_prefix": {"type": "string", "default": null}, "tag_separator": {"type": "string", "default": null}}}]}, "activities": {"type": "object"}, "tls": {"type": "object", "properties": {"key": {"type": "string", "default": null}, "cert": {"type": "string", "default": null}, "root_ca": {"type": "string", "default": null}, "client_auth_type": {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]}, "server_name": {"type": "string", "default": null}}}}}, "kv": {"type": "object", "minProperties": 1, "patternProperties": {"[a-zA-Z0-9_-]*": {"anyOf": [{"type": "object", "properties": {"driver": {"type": "string"}, "config": {"anyOf": [{"type": "object"}, {"type": "object"}, {"type": "object"}, {"type": "object"}]}}, "required": ["driver"]}]}}}, "service": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"allOf": [{"type": "object"}]}}}, "otel": {"type": "object", "properties": {"insecure": {"type": "boolean", "default": false}, "compress": {"type": "boolean", "default": false}, "exporter": {"type": "string", "items": {"type": "string", "enum": ["zipkin", "stdout", "stderr", "otlp", "jaeger", "jaeger_agent"], "pattern": "^[0-9a-zA-Z_]+$"}}, "custom_url": {"type": "string", "default": ""}, "endpoint": {"type": "string", "default": "127.0.0.1:4318"}, "client": {"type": "string", "items": {"type": "string", "enum": ["http", "grpc"], "pattern": "^[0-9a-zA-Z_]+$"}}, "service_name": {"type": "string", "default": "RoadRunner"}, "service_version": {"type": "string", "default": "1.0.0"}, "headers": {}}}, "http": {"type": "object", "properties": {"address": {"examples": ["127.0.0.1:8080", ":8080"]}, "max_request_size": {"type": "integer", "minimum": 0, "default": 0}, "raw_body": {"type": "boolean", "default": false}, "access_logs": {"type": "boolean", "default": false}, "middleware": {"type": "array", "items": {"type": "string", "enum": ["headers", "gzip", "static", "sendfile", "http_metrics", "cache", "proxy_ip_parser", "otel"], "pattern": "^[0-9a-zA-Z_]+$"}}, "trusted_subnets": {"type": "array", "items": {"type": "string", "examples": ["10.0.0.0/8", "127.0.0.0/8"]}, "default": ["10.0.0.0/8", "127.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "::1/128", "fc00::/7", "fe80::/10"]}, "cache": {"type": "object", "properties": {"api": {"type": "object", "properties": {"basepath": {"type": "string", "default": null}, "prometheus": {"type": "object", "properties": {"basepath": {"type": "string", "default": null}}}, "souin": {"type": "object", "properties": {"basepath": {"type": "string", "default": null}}}}}, "cache_keys": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "object", "properties": {"disable_body": {"type": "boolean", "default": false}, "disable_host": {"type": "boolean", "default": false}, "disable_method": {"type": "boolean", "default": false}}}}}, "cdn": {"type": "object", "properties": {"api_key": {"type": "string"}, "provider": {"type": "string", "enum": ["fastly", "cloudflare", "akamai", "varnish"]}, "strategy": {"type": "string", "enum": ["soft", "hard"]}, "dynamic": {"type": "boolean", "default": false}}}, "default_cache": {"type": "object", "properties": {"allowed_http_verbs": {"type": "array", "default": ["GET", "POST"]}, "cache_name": {"type": "string", "default": "roadrunner"}, "distributed": {"type": "boolean", "default": false}, "headers": {"type": "array", "default": null}, "key": {"type": "object", "properties": {"disable_body": {"type": "boolean", "default": false}, "disable_host": {"type": "boolean", "default": false}, "disable_method": {"type": "boolean", "default": false}}}, "etcd": {"type": "object", "properties": {"configuration": {"type": "object", "properties": {"endpoints": {"type": "array", "default": null}}}}}, "olric": {"type": "object", "properties": {"url": {"type": "string", "default": "http://127.0.0.1:3320"}}}, "regex": {"type": "object", "properties": {"exclude": {"type": "string", "default": null}}}, "stale": {"type": "string", "default": "1000s"}, "timeout": {"type": "object", "properties": {"backend": {"type": "string", "default": "10s"}, "cache": {"type": "string", "default": "20ms"}}}, "ttl": {"type": "string", "default": "1000s"}, "default_cache_control": {"type": "string", "default": "no-store"}}}, "log_level": {"type": "string", "default": "INFO", "enum": ["DEBUG", "INFO", "WARN", "DPANIC", "PANIC", "ERROR", "FATAL"]}}}, "uploads": {"type": "object", "properties": {"dir": {"type": "string", "examples": ["/tmp"], "default": ""}, "forbid": {"type": "array", "items": {"type": "string", "examples": [".php", ".exe"]}, "default": [".php", ".exe", ".bat"]}, "allow": {"type": "array", "items": {"type": "string", "examples": [".html", ".go"]}, "default": ""}}}, "headers": {"type": "object", "properties": {"cors": {"type": "object", "properties": {"allowed_origin": {"type": "string", "examples": ["*"], "default": ""}, "allowed_headers": {"type": "string", "examples": ["*"], "default": ""}, "allowed_methods": {"type": "string", "examples": ["GET,POST,PUT,DELETE"], "default": ""}, "allow_credentials": {"type": "boolean", "default": false}, "exposed_headers": {"type": "string", "examples": ["Cache-Control,Content-Language,Content-Type,Expires,Last-Modified,Pragma"], "default": ""}, "max_age": {"type": "integer", "examples": [600], "default": 0}}}, "request": {}, "response": {}}}, "static": {"type": "object", "properties": {"dir": {"type": "string", "examples": [".", "/var/www/html"]}, "forbid": {"type": "array", "items": {"type": "string", "examples": [".php", ".htaccess"]}}, "allow": {"type": "array", "items": {"type": "string", "examples": [".php", ".htaccess"]}}, "calculate_etag": {"type": "boolean"}, "weak": {"type": "boolean"}, "response": {}}, "required": ["dir"]}, "pool": {}, "ssl": {"type": "object", "properties": {"address": {"examples": ["127.0.0.1:443", ":8443"]}, "acme": {"type": "object", "properties": {"certs_dir": {"type": "string", "default": "rr_cache"}, "email": {"type": "string"}, "alt_http_port": {"type": "integer", "default": 80}, "alt_tlsalpn_port": {"type": "integer", "default": 443}, "challenge_type": {"type": "string", "enum": ["http-01", "tlsalpn-01"], "default": "http-01"}, "use_production_endpoint": {"type": "boolean", "default": false}, "domains": {"type": "array"}}, "required": ["domains", "email"]}, "redirect": {"type": "boolean", "default": false}, "cert": {"type": "string", "minLength": 1, "examples": ["/ssl/server.crt"]}, "key": {"type": "string", "minLength": 1, "examples": ["/ssl/server.key"]}, "root_ca": {"type": "string", "minLength": 1, "examples": ["/ssl/root.crt"]}, "client_auth_type": {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]}}, "required": ["address", "cert", "key"]}, "fcgi": {"type": "object", "properties": {"address": {"type": "string", "examples": ["tcp://0.0.0.0:7921"]}}, "required": ["address"]}, "http2": {"type": "object", "properties": {"h2c": {"type": "boolean", "default": false}, "max_concurrent_streams": {"type": "integer", "default": 128, "minimum": 0}}}}, "required": ["address"]}, "redis": {"type": "object"}, "metrics": {"type": "object", "properties": {"address": {"type": "string", "default": "127.0.0.1:2112"}, "collect": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "object", "properties": {"type": {"type": "string", "enum": ["histogram", "gauge", "counter", "summary"]}, "help": {"type": "string"}, "labels": {"type": "array", "minItems": 1}, "buckets": {"type": "array", "items": {"type": "number"}}, "objectives": {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "number"}}}}}}}}}, "status": {"type": "object", "properties": {"address": {"type": "string", "examples": ["127.0.0.1:2114"]}, "unavailable_status_code": {"type": "integer", "default": 503}}, "required": ["address"]}, "reload": {"type": "object", "properties": {"interval": {"default": "1s"}, "patterns": {"type": "array", "items": {"type": "string", "examples": [".php", ".json"]}, "default": [".php"]}, "services": {"type": "object", "minProperties": 0, "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "object", "properties": {"dirs": {"type": "array", "default": [], "items": {"type": "string", "examples": [".", "/app/src"], "minLength": 1}}, "recursive": {"type": "boolean", "default": false}, "ignore": {"type": "array", "default": [], "items": {"type": "string", "examples": ["vendor", "/app/logs"], "minLength": 1}}, "patterns": {"type": "array", "default": [], "items": {"type": "string", "examples": [".php", ".go", ".md"], "minLength": 1}}}}}, "additionalProperties": false}}}, "nats": {}, "kafka": {}, "amqp": {"type": "object", "properties": {"addr": {"type": "string", "default": "amqp://guest:[email protected]:5672"}, "tls": {"properties": {"key": {"type": "string"}, "cert": {"type": "string"}, "root_ca": {"type": "string"}, "client_auth_type": {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]}}}}}, "beanstalk": {"type": "object", "properties": {"addr": {"type": "string", "default": "tcp://127.0.0.1:11300"}, "timeout": {"type": "string", "default": "30s"}}}, "sqs": {"type": "object", "properties": {"key": {"type": "string", "default": null}, "secret": {"type": "string", "default": null}, "region": {"type": "string", "default": null}, "session_token": {"type": "string", "default": null}, "endpoint": {"type": "string", "default": "http://127.0.0.1:9324"}}}, "jobs": {"type": "object", "properties": {"num_pollers": {"type": "integer", "examples": [10, 32]}, "timeout": {"type": "integer", "default": 60}, "pipeline_size": {"type": "integer", "default": 1000000}, "consume": {"type": "array", "items": {"type": "string"}}, "pool": {"type": "object"}, "pipelines": {"type": "object", "properties": {"driver": {"type": "array", "items": {"type": "string", "enum": ["amqp", "sqs", "beanstalk", "boltdb", "memory", "nats", "kafka"]}}, "config": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "object", "maxProperties": 1, "oneOf": [{"properties": {"priority": {"type": "integer", "default": 10}, "prefetch": {"type": "integer", "default": 100000}, "permissions": {"type": "integer", "default": 777}, "file": {"type": "string", "default": "rr.db"}}}, {"properties": {"priority": {"type": "integer", "default": 10}, "prefetch": {"type": "integer", "default": 100000}, "consume_all": {"type": "boolean", "default": false}, "queue": {"type": "string", "default": "default"}, "exchange": {"type": "string", "default": "amqp.default"}, "redial_timeout": {"type": "integer", "default": 60}, "exchange_durable": {"type": "boolean", "default": false}, "consumer_id": {"type": "string", "default": "roadrunner+uuid"}, "exchange_auto_deleted": {"type": "boolean", "default": false}, "queue_auto_deleted": {"type": "boolean", "default": false}, "exchange_type": {"type": "string", "default": "direct"}, "routing_key": {"type": "string", "default": null}, "exclusive": {"type": "boolean", "default": false}, "multiple_ack": {"type": "boolean", "default": false}, "requeue_on_fail": {"type": "boolean", "default": false}, "queue_headers": {"default": null}}}, {"properties": {"priority": {"type": "integer", "default": 10}, "auto_create_topics_enable": {"type": "boolean", "default": false}, "producer_options": {"type": "object", "properties": {"disable_idempotent": {"type": "boolean", "default": false}, "required_acks": {"type": "string", "default": "AllISRAcks", "enum": ["NoAck", "LeaderAck", "AllISRAck"]}, "max_message_bytes": {"type": "integer", "default": 1000012}, "request_timeout": {"default": 10, "type": "integer"}, "compression_codec": {"type": "string", "default": "none", "enum": ["none", "gzip", "snappy", "lz4", "zstd"]}, "delivery_timeout": {"type": "integer", "default": null}, "transaction_timeout": {"type": "boolean", "default": false}}}, "group_options": {"properties": {"group_id": {"type": "string", "default": null}, "block_rebalance_on_poll": {"type": "boolean", "default": false}}}, "consumer_options": {"type": "object", "properties": {"topics": {"type": "array", "default": null}, "consume_regexp": {"type": "boolean", "default": false}, "max_fetch_message_size": {"type": "integer", "default": 50000}, "min_fetch_message_size": {"type": "integer", "default": 1}, "consume_offset": {"type": "object", "properties": {"type": {"type": "string", "default": null, "enum": ["AtEnd", "At", "AfterMilli", "AtStart", "Relative", "WithEpoch"]}, "value": {"type": "integer", "default": 0}}}, "consume_partitions": {"patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string", "default": null, "patternProperties": {"^[0-9]+$": {"type": "integer", "default": null, "properties": {"type": {"type": "string", "default": null, "enum": ["AtEnd", "At", "AfterMilli", "AtStart", "Relative", "WithEpoch"]}, "value": {"type": "integer", "default": 0}}}}}}}}}}}, {"properties": {"priority": {"type": "integer", "default": 10}, "prefetch": {"type": "integer", "default": 100000}}}, {"properties": {"priority": {"type": "integer", "default": 10}, "prefetch": {"type": "integer", "default": 100000}, "consume_all": {"type": "boolean", "default": false}, "tube_priority": {"type": "integer", "default": 1}, "tube": {"type": "string", "default": "default"}, "reserve_timeout": {"default": "5s"}}}, {"properties": {"priority": {"type": "integer", "default": 10}, "prefetch": {"type": "integer", "default": 100000}, "skip_queue_declaration": {"type": "boolean", "default": false}, "consume_all": {"type": "boolean", "default": false}, "visibility_timeout": {"type": "integer", "default": 0}, "wait_time_seconds": {"type": "integer", "default": 0}, "queue": {"type": "string", "default": "default"}, "attributes": {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "number"}}}, "tags": {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "string"}}}}}, {"properties": {"priority": {"type": "integer", "default": 10}, "prefetch": {"type": "integer", "default": 100000}, "consume_all": {"type": "boolean", "default": false}, "subject": {"type": "string", "default": "default"}, "stream": {"type": "string", "default": "default-stream"}, "deliver_new": {"type": "string", "default": "default-stream"}, "rate_limit": {"type": "integer", "default": 1000}, "delete_stream_on_stop": {"type": "boolean", "default": false}, "delete_after_ack": {"type": "boolean", "default": false}}}]}}}}}}}, "tcp": {"type": "object", "properties": {"servers": {"type": "object", "minProperties": 1, "patternProperties": {"^[a-zA-Z0-9._-]+$": {"allOf": [{"type": "object"}]}}}, "pool": {"type": "object"}}}, "grpc": {"type": "object", "properties": {"listen": {"type": "string"}, "proto": {"type": "array", "items": {"type": "string"}}, "tls": {"type": "object", "properties": {"key": {"type": "string", "default": null}, "cert": {"type": "string", "default": null}, "root_ca": {"type": "string", "default": null}, "client_auth_type": {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]}}}, "max_send_msg_size": {"type": "integer", "default": 50}, "max_recv_msg_size": {"default": 50, "type": "integer"}, "max_connection_idle": {}, "max_connection_age": {}, "max_connection_age_grace": {}, "max_concurrent_streams": {"type": "integer", "default": 10}, "ping_time": {}, "timeout": {}, "pool": {"type": "object"}}}, "fileserver": {"type": "object", "properties": {"address": {}, "calculate_etag": {}, "weak": {}, "stream_request_body": {}, "serve": {"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"prefix": {"type": "string", "examples": ["/foo", "/bar/baz"]}, "root": {"default": ".", "type": "string"}, "compress": {"type": "boolean", "default": false}, "cache_duration": {"type": "integer", "default": 10}, "max_age": {"type": "integer", "default": 10}, "bytes_range": {"type": "boolean", "default": false}}, "required": ["prefix"]}}}}}, "required": ["version"], "definitions": {"BoltDB": {"type": "object", "properties": {"file": {"type": "string", "default": "rr.db"}, "permission": {"type": "integer", "default": "0777"}, "interval": {"type": "integer", "default": 60}}}, "Memcached": {"type": "object", "properties": {"addr": {"type": "string", "default": "localhost:11211"}}}, "Redis": {"type": "object", "properties": {"addrs": {"type": "array", "default": "localhost:6379"}, "master_name": {"type": "string", "default": null}, "username": {"type": "string", "default": null}, "password": {"type": "string", "default": null}, "db": {"type": "integer", "default": 0, "maximum": 10}, "sentinel_password": {"type": "string", "default": null}, "route_by_latency": {"type": "boolean", "default": false}, "route_randomly": {"type": "boolean", "default": false}, "dial_timeout": {}, "max_retries": {"type": "integer", "default": 1}, "min_retry_backoff": {"default": 0}, "max_retry_backoff": {"default": 0}, "pool_size": {"type": "integer", "default": 0}, "min_idle_conns": {"type": "integer", "default": 0}, "max_conn_age": {}, "read_timeout": {}, "write_timeout": {}, "pool_timeout": {}, "idle_timeout": {}, "idle_check_freq": {}, "read_only": {"type": "boolean", "default": false}}}, "Memory": {"type": "object", "properties": {"interval": {"type": "integer", "default": 60}}}, "Service": {"type": "object", "properties": {"command": {"type": "string"}, "env": {"type": "object"}, "timeout_stop_sec": {"type": "integer", "default": 5}, "process_num": {"type": "integer", "default": 1}, "exec_timeout": {"type": "string"}, "remain_after_exit": {"type": "boolean", "default": false}, "restart_sec": {"type": "integer", "default": 30}}, "required": ["command"]}, "WorkersPool": {"type": "object", "properties": {"debug": {"type": "boolean", "default": false}, "command": {"type": "string", "default": null}, "num_workers": {"type": "integer", "minimum": 0, "default": 0}, "max_jobs": {"type": "integer", "minimum": 0, "default": 0}, "allocate_timeout": {"default": "60s"}, "reset_timeout": {"default": "60s"}, "destroy_timeout": {"default": "60s"}, "supervisor": {"type": "object", "properties": {"watch_tick": {"default": "1s"}, "ttl": {"default": "0s"}, "idle_ttl": {"default": "0s"}, "max_worker_memory": {"type": "integer", "minimum": 0, "default": 0}, "exec_ttl": {"default": "0s"}}}}}, "TCPServers": {"type": "object", "properties": {"addr": {"type": "string", "pattern": "^[0-9a-zA-Z_.-]+:[0-9]{1,5}$"}, "delimiter": {"type": "string", "default": "\r\n"}, "read_buf_size": {"type": "integer", "minimum": 1, "maximum": 100, "default": 1}}, "required": ["addr"]}, "Duration": {"type": "string", "pattern": "^[0-9]+[ms]|[s,h]", "examples": ["10h", "1m", "1h", "30s", "300ms"]}, "HostAndPortWithTCP": {"type": "string", "pattern": "^(tcp://[0-9a-zA-Z_.-]+|):[0-9]{1,5}$", "examples": ["tcp://127.0.0.1:443"]}, "HostAndPort": {"type": "string", "pattern": "^([0-9a-zA-Z_.-]+|):[0-9]{1,5}$", "examples": ["127.0.0.1:443", ":8080"]}, "LogMode": {"type": "string", "enum": ["development", "production", "raw"]}, "LogLevel": {"type": "string", "enum": ["debug", "info", "warn", "error", "panic"]}, "LogEncoding": {"type": "string", "enum": ["console", "json"]}, "LogOutput": {"type": "string", "examples": ["stdout", "stderr", "/var/log/rr_errors.log"]}, "Hashmap": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string", "examples": ["Any header value"]}}, "additionalProperties": false}, "Bucket": {"type": "object", "patternProperties": {"[+-]?([0-9]*[.])?[0-9]+": {"type": "number", "examples": [1.1]}}, "additionalProperties": false}, "HashMapInt": {"type": "object", "additionalProperties": {"type": "integer"}}, "NATS_J": {"type": "object", "properties": {"addr": {"type": "string", "default": "demo.nats.io"}}}, "KAFKA_J": {"type": "object", "properties": {"brokers": {"type": "array", "items": {"type": "string", "enum": ["127.0.0.1:9092", "127.0.0.1:9002"]}}, "sasl": {"properties": {"mechanism": {"type": "string", "items": {"type": "string", "enum": ["aws_msk_iam", "plain", "SCRAM-SHA-256", "SCRAM-SHA-512"]}}, "username": {"type": "string", "default": null}, "password": {"type": "string", "default": null}, "nonce": {"type": "string", "default": null}, "is_token": {"type": "boolean", "default": false}, "zid": {"type": "string", "default": null}, "access_key": {"type": "string", "default": null}, "secret_key": {"type": "string", "default": null}, "session_token": {"type": "string", "default": null}, "user_agent": {"type": "string", "default": null}}}}}, "BoltDB_J": {"type": "object", "properties": {"permissions": {"type": "integer", "default": "0777"}}}}} |
|
3.0.schema.json | version | configuration version | {"type": "string", "default": "3", "enum": ["3"]} |
3.0.schema.json | centrifuge | Centrifugo server plugin. Docs: https://centrifugal.dev/ | {"type": "object", "properties": {"proxy_address": {"type": "string", "default": "tcp://127.0.0.1:30000"}, "grpc_api_address": {"type": "string", "default": "tcp://127.0.0.1:30000"}, "use_compressor": {"type": "boolean", "default": false}, "version": {"type": "string", "default": "v1.0.0"}, "name": {"type": "string", "default": "roadrunner"}, "pool": {}, "tls": {"type": "object", "properties": {"cert": {"type": "string", "minLength": 1, "examples": ["/ssl/server.crt"]}, "key": {"type": "string", "minLength": 1, "examples": ["/ssl/server.key"]}}}}} |
3.0.schema.json | proxy_address | Centrifugo server proxy address (docs: https://centrifugal.dev/docs/server/proxy#grpc-proxy) | {"type": "string", "default": "tcp://127.0.0.1:30000"} |
3.0.schema.json | grpc_api_address | gRPC server API address (docs: https://centrifugal.dev/docs/server/server_api#grpc-api) | {"type": "string", "default": "tcp://127.0.0.1:30000"} |
3.0.schema.json | use_compressor | Use gRPC gzip compressor | {"type": "boolean", "default": false} |
3.0.schema.json | version | Your application version | {"type": "string", "default": "v1.0.0"} |
3.0.schema.json | name | Your application name | {"type": "string", "default": "roadrunner"} |
3.0.schema.json | pool | Workers pool settings | {} |
3.0.schema.json | tls | TLS settings | {"type": "object", "properties": {"cert": {"type": "string", "minLength": 1, "examples": ["/ssl/server.crt"]}, "key": {"type": "string", "minLength": 1, "examples": ["/ssl/server.key"]}}} |
3.0.schema.json | cert | Path to the cert file | {"type": "string", "minLength": 1, "examples": ["/ssl/server.crt"]} |
3.0.schema.json | key | Path to the cert key file | {"type": "string", "minLength": 1, "examples": ["/ssl/server.key"]} |
3.0.schema.json | listen | TCP address:port for listening | {"type": "string", "default": "tcp://127.0.0.1:6001", "examples": ["tcp://127.0.0.1:6001"], "pattern": "^tcp://[0-9a-zA-Z_.-]+:[0-9]{1,5}$"} |
3.0.schema.json | after_init | Execute command or script after RR allocated a pool of workers. Command executed on the every pool allocation. For example, if you have 2 plugins: `http` and `grpc`, the `after_init` command would be fired twice. | {"type": "object", "properties": {"command": {"type": "string", "examples": ["php not-worker.php", "sh script.sh", "start script.bat"]}, "exec_timeout": {"default": "60s"}, "env": {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}}}} |
3.0.schema.json | command | Command to execute. It can be script or binary | {"type": "string", "examples": ["php not-worker.php", "sh script.sh", "start script.bat"]} |
3.0.schema.json | exec_timeout | Script execute timeout | {"default": "60s"} |
3.0.schema.json | env | Environment variables for the worker processes | {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}} |
3.0.schema.json | on_init | Execute command or script before RR starts allocating workers | {"type": "object", "properties": {"command": {"type": "string", "examples": ["php not-worker.php", "sh script.sh", "start script.bat"]}, "exec_timeout": {"default": "60s"}, "env": {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}}}} |
3.0.schema.json | command | Command to execute. It can be script or binary | {"type": "string", "examples": ["php not-worker.php", "sh script.sh", "start script.bat"]} |
3.0.schema.json | exec_timeout | Script execute timeout | {"default": "60s"} |
3.0.schema.json | env | Environment variables for the worker processes | {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}} |
3.0.schema.json | command | Worker starting command, with any required arguments | {"type": "string", "examples": ["php psr-worker.php"]} |
3.0.schema.json | user | User name (not UID) for the worker processes. An empty value means to use the RR process user | {"type": "string", "default": "", "examples": ["www-data"]} |
3.0.schema.json | group | Group name (not GID) for the worker processes. An empty value means to use the RR process user | {"type": "string", "default": "", "examples": ["www-data"]} |
3.0.schema.json | env | Environment variables for the worker processes | {"type": "array", "items": {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string"}}, "additionalProperties": false}} |
3.0.schema.json | relay | Worker relay can be: 'pipes', TCP (eg.: tcp://127.0.0.1:6002), or socket (eg.: unix:///var/run/rr.sock) | {"type": "string", "default": "pipes", "examples": ["pipes", "tcp://127.0.0.1:6002", "unix:///var/run/rr.sock"]} |
3.0.schema.json | relay_timeout | Timeout for relay connection establishing (only for socket and TCP port relay) | {"default": "60s"} |
3.0.schema.json | output | Output | {"default": "stderr"} |
3.0.schema.json | err_output | Errors only output | {"default": "stderr"} |
3.0.schema.json | channels | You can configure each plugin log messages individually | {"type": "object", "additionalProperties": {"type": "object", "properties": {"mode": {}, "level": {}, "encoding": {}, "output": {}, "err_output": {}}}} |
3.0.schema.json | file_logger_options | file logger options | {"type": "object", "properties": {"log_output": {"type": "string"}, "max_size": {"type": "integer"}, "max_age": {"type": "integer"}, "max_backups": {"type": "integer"}, "compress": {"type": "boolean"}}} |
3.0.schema.json | log_output | path to the file | {"type": "string"} |
3.0.schema.json | max_size | maximum file size in MB | {"type": "integer"} |
3.0.schema.json | max_age | The maximum number of days to retain old log files based on the timestamp encoded in their filename | {"type": "integer"} |
3.0.schema.json | max_backups | The maximum number of old log files to retain | {"type": "integer"} |
3.0.schema.json | compress | compress files to save a disk space | {"type": "boolean"} |
3.0.schema.json | temporal | Workflow and activity mesh service, https://docs.temporal.io/docs/php/introduction/ | {"type": "object", "properties": {"address": {"type": "string", "default": "127.0.0.1:7233"}, "cache_size": {"type": "integer", "default": 10000}, "namespace": {"type": "string", "default": "default"}, "metrics": {"type": "object", "default": null, "properties": {"driver": {"type": "string", "enum": ["prometheus", "statsd"], "default": "prometheus"}}, "anyOf": [{"type": "object", "properties": {"address": {"type": "string", "default": "127.0.0.1:9091"}, "type": {"type": "string", "anyOf": [{"type": "string", "examples": ["summary", "histogram"]}]}, "prefix": {"type": "string", "default": null}}}, {"properties": {"host_port": {"type": "string", "default": "127.0.0.1:8125"}, "prefix": {"type": "string", "default": null}, "flush_interval": {"type": "string", "default": "1s"}, "flush_bytes": {"type": "integer", "default": 1432}, "tags": {}, "tag_prefix": {"type": "string", "default": null}, "tag_separator": {"type": "string", "default": null}}}]}, "activities": {"type": "object"}, "tls": {"type": "object", "properties": {"key": {"type": "string", "default": null}, "cert": {"type": "string", "default": null}, "root_ca": {"type": "string", "default": null}, "client_auth_type": {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]}, "server_name": {"type": "string", "default": null}}}}} |
3.0.schema.json | address | Address of temporal server | {"type": "string", "default": "127.0.0.1:7233"} |
3.0.schema.json | cache_size | Sticky cache size. Sticky workflow execution is the affinity between workflow tasks of a specific workflow execution to a specific worker. The benefit of sticky execution is that the workflow does not have to reconstruct state by replaying history from the beginning. The cache is shared between workers running within same process. This must be called before any worker is started. If not called, the default size of 10K (which may change) will be used | {"type": "integer", "default": 10000} |
3.0.schema.json | namespace | Namespace name for this client to work with | {"type": "string", "default": "default"} |
3.0.schema.json | metrics | Temporal metrics | {"type": "object", "default": null, "properties": {"driver": {"type": "string", "enum": ["prometheus", "statsd"], "default": "prometheus"}}, "anyOf": [{"type": "object", "properties": {"address": {"type": "string", "default": "127.0.0.1:9091"}, "type": {"type": "string", "anyOf": [{"type": "string", "examples": ["summary", "histogram"]}]}, "prefix": {"type": "string", "default": null}}}, {"properties": {"host_port": {"type": "string", "default": "127.0.0.1:8125"}, "prefix": {"type": "string", "default": null}, "flush_interval": {"type": "string", "default": "1s"}, "flush_bytes": {"type": "integer", "default": 1432}, "tags": {}, "tag_prefix": {"type": "string", "default": null}, "tag_separator": {"type": "string", "default": null}}}]} |
3.0.schema.json | driver | Metrics driver to use | {"type": "string", "enum": ["prometheus", "statsd"], "default": "prometheus"} |
3.0.schema.json | address | Server metrics address | {"type": "string", "default": "127.0.0.1:9091"} |
3.0.schema.json | type | Metrics type | {"type": "string", "anyOf": [{"type": "string", "examples": ["summary", "histogram"]}]} |
3.0.schema.json | prefix | Temporal metrics prefix | {"type": "string", "default": null} |
3.0.schema.json | host_port | The host and port of the statsd server | {"type": "string", "default": "127.0.0.1:8125"} |
3.0.schema.json | prefix | The prefix to use in reporting to statsd | {"type": "string", "default": null} |
3.0.schema.json | flush_interval | FlushInterval is the maximum interval for sending packets | {"type": "string", "default": "1s"} |
3.0.schema.json | flush_bytes | FlushBytes specifies the maximum udp packet size you wish to send. If FlushBytes is unspecified, it defaults to 1432 bytes, which is considered safe for local traffic. | {"type": "integer", "default": 1432} |
3.0.schema.json | tags | Hashmap with tag:value values | {} |
3.0.schema.json | tag_prefix | Prefix for the tag | {"type": "string", "default": null} |
3.0.schema.json | tag_separator | TagSeparator allows tags to be appended with a separator. If not specified tag keys and values are embedded to the stat name directly. | {"type": "string", "default": null} |
3.0.schema.json | activities | Activities pool settings | {"type": "object"} |
3.0.schema.json | tls | Temporal TLS configuration | {"type": "object", "properties": {"key": {"type": "string", "default": null}, "cert": {"type": "string", "default": null}, "root_ca": {"type": "string", "default": null}, "client_auth_type": {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]}, "server_name": {"type": "string", "default": null}}} |
3.0.schema.json | key | Path to the key file | {"type": "string", "default": null} |
3.0.schema.json | cert | Path to the certificate | {"type": "string", "default": null} |
3.0.schema.json | root_ca | Path to the CA certificate | {"type": "string", "default": null} |
3.0.schema.json | client_auth_type | Client auth type | {"type": "string", "default": "no_client_certs", "enum": ["request_client_cert", "require_any_client_cert", "verify_client_cert_if_given", "no_client_certs", "require_and_verify_client_cert"]} |
3.0.schema.json | server_name | ServerName is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address. | {"type": "string", "default": null} |
3.0.schema.json | kv | Key value storages plugin | {"type": "object", "minProperties": 1, "patternProperties": {"[a-zA-Z0-9_-]*": {"anyOf": [{"type": "object", "properties": {"driver": {"type": "string"}, "config": {"anyOf": [{"type": "object"}, {"type": "object"}, {"type": "object"}, {"type": "object"}]}}, "required": ["driver"]}]}}} |
3.0.schema.json | [a-zA-Z0-9_-]* | boltdb driver | {"type": "object", "properties": {"driver": {"type": "string"}, "config": {"anyOf": [{"type": "object"}, {"type": "object"}, {"type": "object"}, {"type": "object"}]}}, "required": ["driver"]} |
3.0.schema.json | driver | Driver which should be used for the storage | {"type": "string"} |
3.0.schema.json | service | Service plugin settings | {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"allOf": [{"type": "object"}]}}} |
3.0.schema.json | ^[a-zA-Z0-9._-]+$ | User defined services | {"type": "object"} |
3.0.schema.json | otel | OpenTelemetry configuration | {"type": "object", "properties": {"insecure": {"type": "boolean", "default": false}, "compress": {"type": "boolean", "default": false}, "exporter": {"type": "string", "items": {"type": "string", "enum": ["zipkin", "stdout", "stderr", "otlp", "jaeger", "jaeger_agent"], "pattern": "^[0-9a-zA-Z_]+$"}}, "custom_url": {"type": "string", "default": ""}, "endpoint": {"type": "string", "default": "127.0.0.1:4318"}, "client": {"type": "string", "items": {"type": "string", "enum": ["http", "grpc"], "pattern": "^[0-9a-zA-Z_]+$"}}, "service_name": {"type": "string", "default": "RoadRunner"}, "service_version": {"type": "string", "default": "1.0.0"}, "headers": {}}} |
3.0.schema.json | insecure | Use insecure endpoint | {"type": "boolean", "default": false} |
3.0.schema.json | compress | Use gzip compressor | {"type": "boolean", "default": false} |
3.0.schema.json | exporter | Provides functionality to emit telemetry to consumers | {"type": "string", "items": {"type": "string", "enum": ["zipkin", "stdout", "stderr", "otlp", "jaeger", "jaeger_agent"], "pattern": "^[0-9a-zA-Z_]+$"}} |
3.0.schema.json | custom_url | Used for the http client to override the default URL | {"type": "string", "default": ""} |
3.0.schema.json | endpoint | Consumer's endpoint | {"type": "string", "default": "127.0.0.1:4318"} |
3.0.schema.json | client | Client to send the spans | {"type": "string", "items": {"type": "string", "enum": ["http", "grpc"], "pattern": "^[0-9a-zA-Z_]+$"}} |
3.0.schema.json | service_name | User's service name | {"type": "string", "default": "RoadRunner"} |
3.0.schema.json | service_version | User's service version | {"type": "string", "default": "1.0.0"} |
3.0.schema.json | headers | User defined headers | {} |
3.0.schema.json | address | Host and port to listen on | {"examples": ["127.0.0.1:8080", ":8080"]} |
3.0.schema.json | max_request_size | Maximal incoming request size in megabytes. Zero means no limit | {"type": "integer", "minimum": 0, "default": 0} |
3.0.schema.json | raw_body | Send raw body (unescaped) to the PHP worker for the application/x-www-form-urlencoded content type | {"type": "boolean", "default": false} |
3.0.schema.json | access_logs | HTTP access logs | {"type": "boolean", "default": false} |
3.0.schema.json | middleware | Middleware for the http plugin, order is important | {"type": "array", "items": {"type": "string", "enum": ["headers", "gzip", "static", "sendfile", "http_metrics", "cache", "proxy_ip_parser", "otel"], "pattern": "^[0-9a-zA-Z_]+$"}} |
3.0.schema.json | trusted_subnets | Allow incoming requests only from the following subnets | {"type": "array", "items": {"type": "string", "examples": ["10.0.0.0/8", "127.0.0.0/8"]}, "default": ["10.0.0.0/8", "127.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "::1/128", "fc00::/7", "fe80::/10"]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.