What are the security implications of using HTTP only for IPC for services within the same host?
In my case, I am using docker-compose to host two ASP.NET Core services within the same host in Azure. One proxy service and one web API service. The only public communication is through the proxy and the API is not exposed.
In this case, is it worth the performance penalty of HTTPS for the communication between the proxy and the API service?