I have a PWA
running on: 127.0.0.1:3000
With the following Stunnel
config...
/etc/stunnel/stunnel.conf
client = no
[default]
accept = 443
cert = /etc/stunnel/example.com.pem
connect = 127.0.0.1:7777
[example.com]
sni = default:*example.com
cert = /etc/stunnel/example.com.pem
connect = 127.0.0.1:3000
... I'm able connect to that service by going to (through HTTPS
):
But I also wants to connect to that service by going to (through HTTP
):
Is there anyway to configure Stunnel
to achieve that?
Thanks!