Connecting HA with https #3
steigerbalett
started this conversation in
General
Replies: 2 comments 9 replies
-
|
I hadn’t considered using HTTPS, since it was intended for use inside the home network. What’s your use case? In theory, it should be possible, but it requires some code changes:
esp32:
framework:
type: esp-idf
sdkconfig_options:
CONFIG_MBEDTLS_CERTIFICATE_BUNDLE: yesp_websocket_client_config_t cfg = {};
cfg.uri = "wss://host:8081/";
cfg.transport = WEBSOCKET_TRANSPORT_OVER_SSL;
cfg.crt_bundle_attach = esp_crt_bundle_attach;
...
auto client = esp_websocket_client_init(&cfg);As I said, this is purely theoretical; I haven’t tried it. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I've reread your question, and it looks like you are trying to access the HA dashboard over HTTPS, not the RemoteWebViewServer. Am I right? |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to access the RemoteWebViewServer through https?
At the moment I get only:
404: Not Foundif I try to access the RemoteWebViewServer at https://${haip}:8123/dashboard-mobile/0Beta Was this translation helpful? Give feedback.
All reactions