Nuxt
我使用的是在端口3001上的hos mynuxt.dev
上配置的Nuxt网站。nuxt.config.js
export default {
server: {
host: process.env.HOST,
port: process.env.PORT,
},
...
}
当我执行npm run dev
时,我看到它正确地使用了这些主机和地址。
/etc/hosts
我也把它添加到/etc/hosts
:
127.0.0.1 mynuxt.dev
PM2
然后,我使用pm2
如下:
npm run build
pm2 start
pm2 save
我可以看到网站运行pm2 monit
(日志为空,没有错误)。
Nginx
然后,我按照here的说明配置了Nginx(我禁用了SSL配置):/etc/nginx/sites-available/mynuxt.conf
:
upstream my_nodejs_upstream {
server 127.0.0.1:3001;
keepalive 64;
}
server {
listen 80;
#listen 443 ssl;
server_name mynuxt.dev;
#ssl_certificate_key /etc/ssl/main.key;
#ssl_certificate /etc/ssl/main.crt;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://my_nodejs_upstream/;
proxy_redirect off;
proxy_read_timeout 240s;
}
}
运行Nginx似乎一切正常,但我在/var/log/nginx/access.log
和/var/log/nginx/error.log
中没有看到任何日志。
$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
$ sudo service nginx restart
$ sudo service nginx status
...active (running)...
$ sudo service php7.4-fpm status
...active (running)...
访问网站
为什么从mynuxt.dev
的浏览器访问网站时,我会得到ERR_CONNECTION_REFUSED
?我的配置有什么问题?
如何调试此问题?
3条答案
按热度按时间uplii1fm1#
也许它可以帮助你,我不使用“etc/hosts”配置,我一直在监听“localhost:3000”,正如你可以在下面的配置中看到的(nuxt/pm2/ubuntu)。它工作正常。
Nuxt
在
http://localhost:3000/
上运行(作为nuxt.congig.js
中的默认值)etc/hosts
(我不使用它)
*pm2
(类似于您的命令)
Nginx
bnlyeluc2#
您必须将
mynuxt.dev
添加到/etc/hosts
然后重新启动pm2,它会工作。
vwkv1x7d3#
您的项目名称
1.后端
1.前端
.输出
ecosystem.config.js
package.json
}
}
enter image description here,你应该让它工作。享受编码!!!