Need to start Horizon server over a secure network. Using this github repo https://github.com/stellar/docker-stellar-core-horizon
Following README doc I tried,
docker run --rm -it -p "8000:8000" --name stellar stellar/quickstart --testnet
this start my horizon app over port 8000 with http server. I need to run over https server. For this I tried out few things like,
docker run --rm -it -p "8000:443" --name stellar stellar/quickstart --testnet
docker run --rm -it -p "8000:8000" --name stellar stellar/quickstart --testnet docker --tlsverify --tlscacert=ca.pem --tlscert=cert.pem --tlskey=key.pem
And few more with these ssl keys. Tried to redirect https calls from server to http call using nginx, however failed to do so.
Please provide a way to start docker container over a secure server.