Results 898 comments of Asher

Er wait, maybe I misread. You said you *can* list them without the proxy? I am not entirely sure what is going on then. Maybe check the network tab in...

That `no_proxy` fix does seem promising though.

Interesting, yeah searching extensions happens purely from the browser, so the server should not be involved. You should see a `POST` request to https://open-vsx.org/vscode/gallery/extensionquery, if that errors then no extensions...

Glad the browser side is working now! But yeah sounds like we need that no_proxy fix for the server side to work.

Closing for now since it seems like the fix needs to be done upstream.

I believe this is because Chrome always rejects invalid certificates for service workers even if you have accepted the prompt that warns you about the certificate. I think there are...

In the docs we recommend [mkcert](https://mkcert.dev/). Wonder if we can deprecate code-server's built-in certificate generator for that or at least add a warning to the output.

Yeah this will affect any extension that uses web views since Code uses iframes and service workers for web views. I think web views have always used service workers in...

There are two main options for using a Let's Encrypt certificate: 1. Use a reverse proxy like NGINX or Caddy to handle the certificate. Here are guides for setting that...

Yup, that is correct. Browsers will only allow service workers in "secure contexts" which includes localhost and https. https://www.w3.org/TR/service-workers/#secure-context https://html.spec.whatwg.org/multipage/webappapis.html#secure-context Since it includes localhost one way around having to generate...