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
I would like to know how it would be possible to expose an HTTP server running inside the container to the outside page so that an iframe running on the same browser tab could potentially make a request to the container.
For instance let's say that my container is running nodejs with express like so:
constexpress=require('express')constapp=express()constport=3000app.get('/',(req,res)=>{res.send('Hello World!')})app.listen(port,()=>{console.log(`Example app listening on port ${port}`)})
Is that something that is even possible without some sort of proxy server?
I would like to keep everything running locally.
The text was updated successfully, but these errors were encountered:
an iframe running on the same browser tab could potentially make a request to the container.
This is not implemented as of now. If needed, it would be good to fix the networking stack (c2w-net-proxy) to add such feature, using additional fds maybe.
I would like to know how it would be possible to expose an HTTP server running inside the container to the outside page so that an iframe running on the same browser tab could potentially make a request to the container.
For instance let's say that my container is running nodejs with express like so:
Is that something that is even possible without some sort of proxy server?
I would like to keep everything running locally.
The text was updated successfully, but these errors were encountered: