安装nginx

  1. yum install nginx y
  2. service nginx restart

安装nodejs

更新node.js 14.x版本yum源

  1. curl -sL https://rpm.nodesource.com/setup_14.x | bash -

由于我用的是Aliyun Linux, 所以发布版本不能识别这个平台,所以安装会失败,需要修改下启动脚本,能够识别Aliyun Linux,已经有人改了,地址jibing57/distributions
更新yum源方式就成了:

  1. curl -sL 'https://raw.githubusercontent.com/jibing57/distributions/master/rpm/setup_14.x' | sudo bash -

yum安装nodejs 和 npm

  1. yum install -y nodejs
  2. yum remove nodejs

2 配置web container
修改/etc/nginx/conf.d/default.conf如下:

The default server

server {
listen 80 defaultserver;
server_name
;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location ^~ /node/ {
proxy_pass http://localhost:9002;
}
}
3 重新加载nginx配置
修改配置完成后,需要执行以下命令重新加载配置。
nginx -s reload
如果nginx 命令找不见,那么一般ngxin安装在 cd /usr/local/nginx/sbin  ./nginx -s reload 进行重启

安装ftp服务器

  1. yum -y install vsftpd
  2. service vsftpd start