Connecting to a local https server from wrangler pages dev on windows.
I have a pages project with a function that makes a fetch request to another service. Locally this is running on https://localhost:9002. Notice it's using TLS, and it has a self-signed certificate, outside of my control. When I try to run
I have tried to run With several combinations of
wrangler pages dev I get an error rather than the expected response from the other service:I have tried to run With several combinations of
NODE_EXTRA_CA_CERTS, SSL_CERT_FILE and NODE_TLS_REJECT_UNAUTHORIZED=0 but without any luck. Anything I could try to make this work?