nodejs生产环境部署
前端同学写了一个nodejs的网站,让我帮忙给部署到我们的web服务器上。我以前从来没有在生产环境上部署过nodejs的服务,这台服务器上现在也只有一个nginx+uwsgi的网站在运行。 好在nginx还是很简单的,直接在nginx.conf里加上
server { listen 80; server_name mui.zhugyan.cn; location / { proxy_pass http://localhost:3000; } }
就可以了。
前端同学写了一个nodejs的网站,让我帮忙给部署到我们的web服务器上。我以前从来没有在生产环境上部署过nodejs的服务,这台服务器上现在也只有一个nginx+uwsgi的网站在运行。 好在nginx还是很简单的,直接在nginx.conf里加上
server { listen 80; server_name mui.zhugyan.cn; location / { proxy_pass http://localhost:3000; } }
就可以了。
整理记录给服务器新硬盘格式化,分区并挂载到目录的操作。
以前只会用service iptables stop和service iptables start 关闭和开放防火墙,现在有空学习iptables规则的详细设置了。