linux azcopy 10.3.4
linux
always hit error like:

on this server, we can always hit this issue.
Configure:
1.this server use proxy but not Kerberos authentication way.
NA, still blocked here.
Could you give some help on this?
@Icybiubiubiu I emailed you a suggested solution. If it works, can you please add a comment here so that anyone else with the same problem can see the solution.
Hi @JohnRusk
Thanks for your comments. yes, we used the following methods to solve this isseu:
export http_proxy=http://proxy-ip:port
export https_proxy=http://proxy-ip:port
For anyone else reading this, the trick is that many proxies only support HTTP for their CONNECT command, even when proxying HTTPS traffic. What happens is that the client uses one command over HTTP (a CONNECT) command, to cause the proxy to open a TCP connection, then the client sets up a secure-end-to-end HTTPS session running over that connection (and all the proxy does is move the encrypted bytes, without ever understanding any of them).
It appears that only a small number of proxies support receiving the CONNECT over HTTPS, which is what @Icybiubiubiu 's original config was doing, when it had https_proxy=https://.... That only works with a proxy that accepts CONNECT over HTTPS. For all other proxies, i.e. most proxies, you need to set https_proxy=http://
(Or, I think, just set HTTP_PROXY and leave HTTPS_PROXY unset. Or, I think, just use proxy-ip:port, with no http or https)