Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

serve-web unable to connection to Extensions marketplace #210705

Open
NikeahX3 opened this issue Apr 18, 2024 · 2 comments
Open

serve-web unable to connection to Extensions marketplace #210705

NikeahX3 opened this issue Apr 18, 2024 · 2 comments
Assignees

Comments

@NikeahX3
Copy link

Does this issue occur when all extensions are disabled?: Yes/No

  • VS Code Version: 1.88.1
  • OS Version: Ubuntu 22.04

Steps to Reproduce:

  1. Start VS Code via code serve-web --port 7000 --host 0.0.0.0
  2. Go to Extensions

I get the following:
image

I've got a reverse proxy set up via nginx, config is:

server {
listen 443 ssl;

 ssl_certificate /path/to/cert/selfsigned.crt;
 ssl_certificate_key /path/to/key/selfsigned.key;

 location / {
     proxy_pass http://localhost:7000;
     proxy_set_header Host $host;
     proxy_set_header X-Real-IP $remote_addr;
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
     proxy_set_header X-Forwarded-Proto $scheme;
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection upgrade;
     proxy_set_header Accept-Encoding gzip;
 }

}

Would be great if this could be resolved..

Appreciate the work that's gone into this, thanks!

@NikeahX3
Copy link
Author

Just seen the vscode-remote-release repository, should this be filed as an issue over there instead?

@aeschli
Copy link
Contributor

aeschli commented Apr 22, 2024

Here is the correct repo, but unfortunately accessing the code web server through a reverse proxy (or other means) is outside of our scope. I don't have the resources to test and debug this.
Happy to accept a PR if you find the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants