downgrade_​protocol

Version: v2025-01-13Includes use: No

Behavior name: Protocol Downgrade

Serve static objects to the end-user client over HTTPS, but fetch them from the origin via HTTP.

Default behavior

These samples reflect the behavior's default settings. You can use these as is in your configurations or make adjustments based on the behavior's available options.

data "akamai_property_rules_builder" "downgrade_protocol" {
  rules_v2025_02_18 {
    name     = "Protocol Downgrade"
    comments = "Fetches static objects from the origin using HTTP and serves them to the end-user client over HTTPS."
    behavior {
      downgrade_protocol {
        enabled = true
      }
    }
  }
}
"behaviors": [
  {
    "name": "downgradeProtocol",
    "options": {
      "enabled": true
    }
  }
]

Options

Option Description
enabled
Enables the protocol downgrading behavior.