I’m testing microgateway on the same host as my service. Connecting to ‘localhost’ fails because i have a certificate that isn’t named ‘localhost’
I tried to disable the ssl checks with:
edgemicro_config:
...
edgemicro:
...
targets:
- host: localhost
ssl:
client:
rejectUnauthorized: false
- host: localhost:8443
ssl:
client:
rejectUnauthorized: false
Is this not supported, or am i just not specifying the right settings in my edgemicro.yaml?