提问人:Fadwa Mhmd 提问时间:11/12/2023 更新时间:11/12/2023 访问量:14
配置VPS和NodeJS应用程序的问题
problem with configuration VPS and nodejs application
问:
这是网站链接,其在部署成功后显示错误请求并指向域成功 仍然网站desnt工作 我认为conf文件有问题 etc/nginx/sites-available dose 不包含 defult.conf 文件 /etc/nginx/sites-enabled 包含以下文件:
default.conf twtsys.com.conf twtsys.com.conf.save twtsys.com 这是我的项目名称 WITCH文件我应该编辑吗?以及请在其中写什么
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name twtsys.com MY IP;
location / {
proxy_pass http://localhost:8000; # Adjust port if necessary
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;
}
}
这是 default.conf 文件
答: 暂无答案
评论