Zone Enable Onion Routing

Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zones-opportunistic-onion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zones_opportunistic_onion",
  "title": "Zone Enable Onion Routing",
  "allOf": [
    {
      "$ref": "#/components/schemas/zones_base"
    },
    {
      "properties": {
        "id": {
          "description": "ID of the zone setting.",
          "enum": [
            "opportunistic_onion"
          ],
          "example": "opportunistic_onion"
        },
        "value": {
          "$ref": "#/components/schemas/zones_opportunistic_onion_value"
        }
      }
    }
  ],
  "default": "off",
  "description": "Add an Alt-Svc header to all legitimate requests from Tor, allowing the connection to use our onion services instead of exit nodes."
}