I have deployed an elasticsearch container over Fly using a Dockerfile. The container operates over https protocol. But whenever i send the request to the deployed address, it shows this message:
When i disabled http security in my configuration files, then it was able to accept the requests. So, as i understand what is happening is that i send https request to Fly on the deployed url, it receives them and sends a request to elasticsearch VM over http but the thing is elasticsearch receives request over https that’s why it is not working… is it a correct assumption? If it is how can i fix fly proxy to send https requests to elastic search??
This is controlled by your fly.toml. If this currently contains a http_service section you may need to replace it with services section. Make sure that you do not specify the tls handler.