openminted / install-tutorial

OpenMinTeD Installation Tutorial event. Practical information, documents and notes.
1 stars 1 forks source link

nginx parametrisation on docker.openminted.eu/omtd-platform #7

Open olanag1 opened 5 years ago

olanag1 commented 5 years ago

Hello, I'm trying to launch a openminted stand-alone application. The entry docker container for OMTD is docker.openminted.eu/omtd-platform, that has nginx already installed. I can load the main OMTD interface, but when I'm trying to login/sign-up, I'm redirected to the url 'http://127.0.0.1/api/openid_connect_login' . This url is not responding...

I suppose this url is generated in the nginx 'main.map' file, but in nginx.conf I found that all '/api' destintations are blocked :

               location /api {
                   # try_files $uri$args $uri$args/ /api
                   return 404 /api;

               }

What's wrong here ? Did I miss something ?

Thanks for your help :)