我看到很多人问这个问题,但从来没有回答。我有一个节点应用程序,我部署它使用nginx。这发生在我试图部署多个站点在同一个示例。但现在我已经删除了一个。这是我的配置:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
proxy_pass http://localhost:8080;
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;
}
}
nginx错误日志:
1条答案
按热度按时间q3aa05251#
我刚刚释放了端口8080,并尝试再次安装nginx和pm2,它工作了。