I am having an issue with pushing to Heroku:
➜ git push heroku ******
fatal: unable to access 'https://git.heroku.com/****.git/': Server aborted the SSL handshake
However, if I push the same code to GitHub (a private repo), it goes through no problem:
➜ git push origin *****
Counting objects: 455, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (216/216), done.
Writing objects: 100% (455/455), 1.35 MiB | 232.00 KiB/s, done.
Total 455 (delta 367), reused 302 (delta 234)
remote: Resolving deltas: 100% (367/367), completed with 82 local objects.
To github.com:***/***.git
278516b5..ed34f009 master -> master
I have a couple questions:
1.) How do I diagnose this issue to get more details?
2.) What might be happening on my end or Heroku's end that it aborts the SSL handshake?
Note this issue only occurs when I'm on HughesNet satellite internet on BOTH my computers -- my laptop & PC. If I change to a different network, the push happens just fine.