Skip to content

Commit

Permalink
fix: enable TLS config for pusher
Browse files Browse the repository at this point in the history
  • Loading branch information
hudy9x committed Jan 23, 2024
1 parent 5c5aae4 commit 2dd5993
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/be-gateway/src/lib/pusher-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ export const pusherServer = new Pusher({
appId: process.env.PUSHER_CHANNEL_APP_ID,
key: process.env.NEXT_PUBLIC_PUSHER_CHANNEL_APP_KEY,
secret: process.env.PUSHER_CHANNEL_SECRET,
cluster: process.env.NEXT_PUBLIC_PUSHER_CHANNEL_APP_CLUSTER
cluster: process.env.NEXT_PUBLIC_PUSHER_CHANNEL_APP_CLUSTER,
useTLS: true
})

0 comments on commit 2dd5993

Please sign in to comment.