Forgive the likely stupid question. I have my home assistant setup running on an HTTPS server. I'm trying to get this Shelly Button webhook to run, but it turns out that the shelly button 1 doesn't support HTTPS (bummer).
Is it possible to somehow expose a single webhook url on HTTP?
Or barring that, is there a recommended simple/single button that supports secure connections?
#HTTP Webhook on HTTPS setup?
5 messages · Page 1 of 1 (latest)
A typical https configuration is to put HA behind a reverse proxy like NGINX that handles and terminates SSL and leave the local HA instance regular http
That way you can have encrypted external connections, but anythign local is unencrypted. it would help in this case
the answer to your first question is "no, you cannot have an http webhook in an HA instance that enforces SSL"
I appreciate the quick answer! I'll look into that. Thanks!