-
I'm trying to get a local web server setup using the rust warp crate and flutter compiled for the web using FRB WASM. I'm not certain what these features are, but from a small amount of research. It might be for shared buffer arrays? I have been able to get it working since using https with self signed certificates, but it's not ideal. And causes a lot of issues when I host the webserver in an environment where the security is setup to block self signed certificates as well. (Sadly I can't avoid the self signed certs). Is there any way to use FRB with just http? And not require the webserver to be on https? Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Firstly, may I know your usage scenario? It is recommended to have HTTPS when hosting a website, otherwise it can be pretty dangerous and have attacks. Secondly, yes it is because some requirements in Rust wasm. But if you never use things outside of the main thread, then I guess it may be possible to remove that header. But again I would suggest firstly have a discussion about why HTTPS cannot be deployed. |
Beta Was this translation helpful? Give feedback.
Then looks like your case can be done, given #2215 seemed to succeed. Also feel free to PR for a quick doc change if you like!