Here's my proxy setup:
(setq url-proxy-services '(("no_proxy" . "my-corp-proxy")
("http" . "my-corp-proxy:8080")
("https" . "my-port-proxy:8080")))
I can use eww
to access HTTP sites, but when I try to access HTTPS sites I get this response:
I've installed gnutls
as well; evaluating (gnutls-available-p)
gives t
.
How do I solve this issue?