Skip to content

WebSockets

Cloudflare supports proxied WebSocket connections without additional configuration.

Background

WebSockets are open connections sustained between the client and the origin server. Inside a WebSockets connection, the client and the origin can pass data back and forth without having to reestablish sessions. This makes exchanging data within a WebSockets connection fast. WebSockets are often used for real-time applications such as live chat and gaming.

Enable WebSockets

To enable WebSockets connections to your origin server in the dashboard:

  1. Log in to your Cloudflare account and go to a specific domain.
  2. Go to Network.
  3. For WebSockets, switch the toggle to On.

Compatibility notes

ProductCompatibleNotes
SSLYes
WAFYes*The initial HTTP 101 request is subject to WAF managed rules, custom rules, rate limiting rules, and other WAF features like any other WebSockets connection. However, once a connection has been established, the WAF does not perform any further inspections.
WorkersYesYou can also use Durable Objects as an endpoint for WebSocket sessions, giving you full control over messages sent to and from clients.

Availability

WebSockets are supported on all Cloudflare plans.

Technical note

When Cloudflare releases new code to its global network, we may restart servers, which terminates WebSockets connections.

Best practises

  • Implement a keepalive.
  • Review and then remove or extend timeout settings on the origin and/or on the client.

Troubleshooting

Investigating issues with Websocket can be facilitated with client tools like wscat. Being able to reproduce an issue on a single URL with a minimalistic tool helps narrowing down the issue.