You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @AnthonyPhan ,
I recently ran into this problem for a use case where the video server requests needed to be made using https. My solution was to run a very basic proxy server that redirects https requests to the ROS web video server.
I used NGINX for the proxy server.
This server configuration worked quite nicely:
This server listens for https requests on the port defined with the listen statements (10080) and uses the certificates defined by the file paths. All requests are then forwarded to the address given by the proxy pass statement and the request uri remains unchanged.
Example: https://localhost:10080/stream?topic=/usb_cam/image_raw is redirected to http://0.0.0.0:8080/stream?topic=/usb_cam/image_raw
Hi i'm unable to find any information on how to get this plugin to work with TLS so that it is not rejected by most modern browsers.
The text was updated successfully, but these errors were encountered: