how to integration a websocket api gateway to my lightsail instance?

0

hey guys, This may be a very beginner question, but I really can't find the answer. I just hope the client can establish a WebSocket connection with my Lightsail instance through the API gateway. the AWS Q tell me should set the proxy_integration, but I can't find this option in the integration page. there only opts like"Lambda function" "HTTP" "AWS service", do I looked the wrong place? thank you

2 Answers
2
Accepted Answer

You should choose the HTTP integration, and when you do, you will be able to choose a Proxy integration that passes all information to the backend in an HTTP request. In your Lightsail server you will need to run an HTTP server that will listen to those HTTP requests. When your server will need to send a message to the client, it will need to make an API call to API Gateway's @connection end point.

profile pictureAWS
EXPERT
Uri
answered 3 months ago
profile pictureAWS
EXPERT
reviewed 3 months ago
  • Thank you for your response, I appreciate it. So does this mean that the websocket API gateway cannot directly connect to an instance via websocket, and the only option is to change the backend server to HTTP?

  • Correct. The websocket connection itself is terminated at the API Gateway, and it uses HTTP requests to communicate with the backend integrations. If you want a websocket to your backend, don't use API Gateway.

0

Hi,vegetabo,I don't know you whether know the "X-UI",maybe you can try this and easily to use socket

answered 3 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions