We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f31cb7 + 4aa43d0 commit 0c75b92Copy full SHA for 0c75b92
lib/proxyIntegration.js
@@ -196,7 +196,7 @@ function extractPathNames(pathExpression) {
196
function isLocalExecution(event) {
197
return event.headers
198
&& event.headers.Host
199
- && event.headers.Host.startsWith('localhost');
+ && (event.headers.Host.startsWith('localhost') || event.headers.Host.startsWith('127.0.0.1'));
200
}
201
202
module.exports = process;
0 commit comments