4

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:

enter image description here

I've installed gnutls as well; evaluating (gnutls-available-p) gives t.

How do I solve this issue?

Basil
  • 12,019
  • 43
  • 69
SparedWhisle
  • 569
  • 3
  • 13

1 Answers1

2

I had the same problem and I have finally got it working.

I applied the patch in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=11788#52.

Then, to solve

error in process filter: url-http-generic-filter: Wrong type argument: number-or-marker-p, http/1.1

I just had to add a line to url-http.el:462 which was

(skip-chars-forward "HTTP/")        ; Skip HTTP Version
(skip-chars-forward "http/")        ; Skip HTTP Version
Basil
  • 12,019
  • 43
  • 69
pollolobo
  • 21
  • 2