Updated 99. FAQ (Frequently Asked Questions) (markdown)

Eduard Tomàs 2017-09-08 09:35:49 +02:00
parent 315a668ca8
commit 6b2b2b9032

@ -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)