Proxy from Source HTTPS to target HTTP #544
Unanswered
siddiqicps
asked this question in
Q&A
Replies: 2 comments
-
try setting the ssl: {
key: fs.readFileSync(path.join(fixturesDir, 'agent2-key.pem'), 'utf8'),
cert: fs.readFileSync(path.join(fixturesDir, 'agent2-cert.pem'), 'utf8')
} source: |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks, but stringifying the request payload solved my problem.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dear Team,
I am running a node.js webserver over https and my node.js APIs are running over HTTP. I am trying to proxy from source HTTPS to target HTTP but it's not working. Is there any specific option which I have to set in order to achieve this.
Beta Was this translation helpful? Give feedback.
All reactions