8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

VS Code 突然无法在 WSL 中连接(Windows 11)

OfusJK 2月前

30 0

我目前正在使用 Remote Explorer 连接到 Ubuntu 20.04 中的 WSL。然后,它突然抛出一个错误,我找不到修复它的方法。我已经调试了将近一天,但仍然...

我目前正在使用 Remote Explorer 连接到 Ubuntu 20.04 中的 WSL。然后,它突然抛出一个错误,我找不到修复它的方法。我已经调试了将近一天,但仍然没有运气。

在此处输入图片描述

我已经尝试过:

  • -关闭 WSL 并重新启动我的电脑。-卸载 Ubuntu 20.04,然后重新安装。-卸载 VS Code,然后重新安装。-删除里面的 .vscode-server 文件夹
    /home/name/ 目录

我有预感我只需要更改 VS Code 配置,但我不知道该怎么做(我已经检查了设置)。

帖子版权声明 1、本帖标题:VS Code 突然无法在 WSL 中连接(Windows 11)
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由OfusJK在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我有一个 ubuntu vps。我已经设置了一个域并通过 nginx 在域路由上运行一个应用程序:example.com。现在想要通过 nginx 在子目录中安装一个 wordpress 博客,路由如下:exa...

    我有一个 ubuntu vps。

    我已经设置了一个域,并在域路由上通过 nginx 运行一个应用程序:example.com。

    现在想要通过 nginx 在子目录中安装一个 wordpress 博客,路由为:example.com/blog。

    我应该怎么做才能解决这个问题?

    server {
    server_name example.com;
    
    gzip on;
            gzip_proxied any;
            gzip_types application/javascript application/x-javascript text/css text/javascript;
            gzip_comp_level 5;
            gzip_buffers 16 8k;
            gzip_min_length 256;
    
            location /_next/static/ {
                    alias /home/username/apps/my-app/.next/static/;
                    expires 365d;
                    access_log off;
            }
    
            location / {
                    proxy_pass http://localhost:3000; #change to 3001 for second app, but make sure second nextjs app starts on new port in packages.json "start": "next start -p 3001",
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection 'upgrade';
                    proxy_set_header Host $host;
                    proxy_cache_bypass $http_upgrade;
            }
    
       
    location /blog {
       # what should I do or add what block to solve my problem and have the wordpress on subdirectory?
    }
    
    
    
    }
    

    我可以在域路由或子域上执行此操作;但对我个人而言,无法做我想做的事情。

    如果您知道什么的话,请帮我解决...谢谢!

返回
作者最近主题: