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.
1 parent e27380c commit 9be9ffbCopy full SHA for 9be9ffb
packages/oidc-mock-provider/src/index.ts
@@ -109,7 +109,7 @@ export class OIDCMockProvider {
109
private async init(): Promise<this> {
110
this.httpServer.listen(
111
this.config.port ?? 0,
112
- this.config.bindIpAll ? '::,0.0.0.0' : this.config.hostname
+ this.config.bindIpAll ? '::' : this.config.hostname
113
);
114
await once(this.httpServer, 'listening');
115
const { port } = this.httpServer.address() as AddressInfo;
0 commit comments