Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,11 @@ Stable options are:

See the [Cookbook](./docs/COOKBOOK.md) for configuration examples.

- **AgentTunnel** (_Object_): QUIC-based agent tunnel configuration.
Gateway always starts the listener and fails startup if it cannot initialize or bind.

* **ListenPort** (_Integer_): UDP port for the QUIC listener (default is `4433`).

- **VerbosityProfile** (_String_): Logging verbosity profile (pre-defined tracing directives).

Possible values:
Expand Down
17 changes: 17 additions & 0 deletions config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@
"$ref": "#/definitions/ProxyConf",
"description": "HTTP/SOCKS proxy configuration for outbound requests."
},
"AgentTunnel": {
"$ref": "#/definitions/AgentTunnelConf",
"description": "QUIC-based agent tunnel configuration."
},
"LogFile": {
"type": "string",
"description": "Path to the log file."
Expand Down Expand Up @@ -508,6 +512,19 @@
},
"additionalProperties": false
},
"AgentTunnelConf": {
"type": "object",
"properties": {
"ListenPort": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"default": 4433,
"description": "UDP port for the QUIC listener."
}
},
"additionalProperties": false
},
"DebugConf": {
"type": "object",
"properties": {
Expand Down
Loading
Loading