From d0f665a5e076e4c1f1a28689b3c7fcf65abe28e7 Mon Sep 17 00:00:00 2001 From: yura Date: Thu, 23 May 2024 23:53:58 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20ws=20+=20ssl=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Chat/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Chat/index.tsx b/src/components/Chat/index.tsx index 788ccb8d..9d60fe67 100644 --- a/src/components/Chat/index.tsx +++ b/src/components/Chat/index.tsx @@ -62,7 +62,7 @@ const Chat: React.FC = ({ chatId }) => { const connect = useCallback(() => { client.current = new Stomp.Client({ - brokerURL: 'ws://techeermarket.ap-northeast-2.elasticbeanstalk.com/ws-stomp', + brokerURL: 'wss://eb.techeermarket.store/ws-stomp', connectHeaders: { Authorization: localStorage.getItem('token') || '', },