How to run Theia browser-app on HTTPS instead of HTTP? #15464
Replies: 2 comments
-
Hey @PragyanandGithub, AFAIK the recommendation is to use a reverse proxy that serves the Theia frontend, and handle HTTPS through that. However, I'm not an expert on that. @jfaltermeier can you chime in? |
Beta Was this translation helpful? Give feedback.
-
With the Theia CLI itself, you can run
If you prefer not to configure SSL within the Theia application itself, another option is to run the (potentially containerized) Theia instance using plain HTTP and put a reverse proxy like Nginx in front of it. The proxy would handle SSL termination and forward traffic to the Theia application over HTTP. You might also want to have a look at Theia Cloud, which helps with hosting Theia-based applications on Kubernetes: https://theia-cloud.io/ |
Beta Was this translation helpful? Give feedback.
-
Hi everyone,
I'm currently running the Theia
browser-app
locally onhttp://localhost:3000
. I want to configure it to run on HTTPS instead of HTTP for secure communication, especially for production deployment or testing secure features.Here’s what I’ve tried so far:
yarn start
ortheia start
(mention your actual command).Can anyone guide me on:
Any help or links to relevant docs would be appreciated. Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions