我目前正在使用 Remote Explorer 连接到 Ubuntu 20.04 中的 WSL。然后,它突然抛出一个错误,我找不到修复它的方法。我已经调试了将近一天,但仍然...
我目前正在使用 Remote Explorer 连接到 Ubuntu 20.04 中的 WSL。然后,它突然抛出一个错误,我找不到修复它的方法。我已经调试了将近一天,但仍然没有运气。
在此处输入图片描述
我已经尝试过:
/home/name/
目录
我有预感我只需要更改 VS Code 配置,但我不知道该怎么做(我已经检查了设置)。
我有一个 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?
}
}
我可以在域路由或子域上执行此操作;但对我个人而言,无法做我想做的事情。
如果您知道什么的话,请帮我解决...谢谢!