Endpoint Protocols
Endpoints have one of four supported protocols:
- HTTP/S Endpoints -
http
,https
- TCP Endpoints -
tcp
- TLS Endpoints -
tls
An Endpoint's protocol is specified in the scheme of its URL. For example:
https://app.example.com
uses thehttps
protocoltcp://db.internal:3306
uses thetcp
protocol
An Endpoint's protocol determines:
- How it processes connections that it receives
- The phases, variables, and actions that may be defined on its Traffic Policy.
- What hostnames and ports may be specified in its URL
Learn more about in the Endpoints documentation.