From 6b2b2b9032aad843ffe6587f702d2c34d4291abc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduard=20Tom=C3=A0s?= Date: Fri, 8 Sep 2017 09:35:49 +0200 Subject: [PATCH] Updated 99. FAQ (Frequently Asked Questions) (markdown) --- 99.-FAQ-(Frequently-Asked-Questions).md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/99.-FAQ-(Frequently-Asked-Questions).md b/99.-FAQ-(Frequently-Asked-Questions).md index a3f8763..7486ee9 100644 --- a/99.-FAQ-(Frequently-Asked-Questions).md +++ b/99.-FAQ-(Frequently-Asked-Questions).md @@ -49,3 +49,12 @@ This error is produced because some Docker image can't be built. This is because This is because of npm 5.3.0 on newer versions of nodejs. Downgrade to npm 5.2.0 until a fix is released. For more info check [this issue](https://github.com/dotnet-architecture/eShopOnContainers/issues/268) +### When trying to logging from MVC app the following error appears: IDX10803: Unable to obtain configuration from: 'http://10.0.75.1:5105/.well-known/openid-configuration' + +First open a browser and navigate to `http://10.0.75.1:5105/.well-known/openid-configuration`. You should receive json response. If not, ensure that Identity.API and Docker are running without issues. + +If response is received the problem is that the request from a container cannot reach the `10.0.75.1` (which is the IP of the host machine inside the DockerNAT). Be sure that: + +* You have opened the ports of the firewall (run the script `cli-windows\add-firewall-rules-for-sts-auth-thru-docker.ps1` + +If this do not solved your problem ensure that the `vpnkit` of the firewall is disabled. For more info refer to @huangmaoyixxx's comment in [issue #](295https://github.com/dotnet-architecture/eShopOnContainers/issues/295) \ No newline at end of file