If I have an api gateway in a docker container that communicates with a second webapi docker container on the same user bridge network, would there be any reason to configure ssl between the api gateway and the docker container?
Is it 100% safe to only use port 80 between the webapi and the api gateway?
Clients connect to the api gateway over ssl, so do you have to continue ssl all the way to the webapi for some reason?
Assuming I don't need SSL: if from the webapi I want to read some custom claims off of an OAUTH2 access token, does this change things?
The reason I'm asking is because I've setup an Ocelot api gateway and webapi and they communicate fine over http but I can't get them to communicate over the webapi's ssl endpoint but I won't worry about it if it doesn't matter.