Skip to content

Commit 2122cb9

Browse files
authored
Update Ably url on Broadcasting (#8520)
Ably has changed its URL to https://ably.com
1 parent 5be022a commit 2122cb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

broadcasting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The core concepts behind broadcasting are simple: clients connect to named chann
5252
<a name="supported-drivers"></a>
5353
#### Supported Drivers
5454

55-
By default, Laravel includes two server-side broadcasting drivers for you to choose from: [Pusher Channels](https://pusher.com/channels) and [Ably](https://ably.io). However, community driven packages such as [laravel-websockets](https://beyondco.de/docs/laravel-websockets/getting-started/introduction) and [soketi](https://docs.soketi.app/) provide additional broadcasting drivers that do not require commercial broadcasting providers.
55+
By default, Laravel includes two server-side broadcasting drivers for you to choose from: [Pusher Channels](https://pusher.com/channels) and [Ably](https://ably.com). However, community driven packages such as [laravel-websockets](https://beyondco.de/docs/laravel-websockets/getting-started/introduction) and [soketi](https://docs.soketi.app/) provide additional broadcasting drivers that do not require commercial broadcasting providers.
5656

5757
> **Note**
5858
> Before diving into event broadcasting, make sure you have read Laravel's documentation on [events and listeners](/docs/{{version}}/events).
@@ -115,7 +115,7 @@ The [laravel-websockets](https://github.com/beyondcode/laravel-websockets) and [
115115
<a name="ably"></a>
116116
### Ably
117117

118-
If you plan to broadcast your events using [Ably](https://ably.io), you should install the Ably PHP SDK using the Composer package manager:
118+
If you plan to broadcast your events using [Ably](https://ably.com), you should install the Ably PHP SDK using the Composer package manager:
119119

120120
```shell
121121
composer require ably/ably-php
@@ -229,7 +229,7 @@ window.Pusher = Pusher;
229229
window.Echo = new Echo({
230230
broadcaster: 'pusher',
231231
key: import.meta.env.VITE_ABLY_PUBLIC_KEY,
232-
wsHost: 'realtime-pusher.ably.io',
232+
wsHost: 'realtime-pusher.ably.com',
233233
wsPort: 443,
234234
disableStats: true,
235235
encrypted: true,
@@ -250,7 +250,7 @@ npm run dev
250250
<a name="concept-overview"></a>
251251
## Concept Overview
252252

253-
Laravel's event broadcasting allows you to broadcast your server-side Laravel events to your client-side JavaScript application using a driver-based approach to WebSockets. Currently, Laravel ships with [Pusher Channels](https://pusher.com/channels) and [Ably](https://ably.io) drivers. The events may be easily consumed on the client-side using the [Laravel Echo](#client-side-installation) JavaScript package.
253+
Laravel's event broadcasting allows you to broadcast your server-side Laravel events to your client-side JavaScript application using a driver-based approach to WebSockets. Currently, Laravel ships with [Pusher Channels](https://pusher.com/channels) and [Ably](https://ably.com) drivers. The events may be easily consumed on the client-side using the [Laravel Echo](#client-side-installation) JavaScript package.
254254

255255
Events are broadcast over "channels", which may be specified as public or private. Any visitor to your application may subscribe to a public channel without any authentication or authorization; however, in order to subscribe to a private channel, a user must be authenticated and authorized to listen on that channel.
256256

0 commit comments

Comments
 (0)