1、node安裝與配置node
一、環境:阿里雲ubuntu16.04webpack
二、更新:sudo apt-get updatenginx
三、安裝相關依賴文件:git
sudo apt-get install vim openssl build-essential libssl-dev wget curl git
四、安裝nvmgithub
在 https://github.com/creationix/nvm 找到,並使用web
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
下載完成後 source ~/.bashrc 完成後從新打開一個終端
五、使用nvm 安裝 nodejs穩定版本(截至20171015)apache
nvm install 6.11.4
六、指定系統默認版本:npm
nvm use 6.11.4
nvm alias default 6.11.4
七、將npm源設置成淘寶源gulp
npm --registry=https://registry.npm.taobao.org install -g npm
監控文件數目:ubuntu
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
八、安裝cnpm
npm --registry=https://registry.npm.taobao.org install -g cnpm
九、安裝經常使用全局工具包(按需選擇性安裝):
npm install pm2 webpack gulp grunt-cli -g
2、配置 Nginx 實現反向代理;
一、若是有apache咱們移除下:
update-rc.d -f apache2/apache remove
apt-get remove apache2/apache
二、直接使用apt-get安裝Nginx
apt-get install nginx
三、進入/etc/nginx/conf.d,新建一個配置文件:testweb_8080.conf
upstream testweb{
server 127.0.0.1:8080;
}
server{
listen 80;
server_name 120.78.147.101;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Nginx-Proxy true;
proxy_pass http://test.bradball.xin;
proxy_redirect off;
}
}
四、返回到/etc/nginx .備份下nginx.conf
cp nginx.conf nginx.conf.bak
而後進入 vim nginx.conf
參看 include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; 是否打開,沒打開就去掉註釋
nginx -t //測試nginx是否有錯誤