本文是在mac下配置nodejs 在nginx下的反向代理
1.安裝nodejs,之前就安裝了。
2.安裝nginx ,我採用的直接原始碼安裝
3.進入 /usr/local/nginx/conf 目錄,在該目錄下建立include 檔案下,我的配置檔案就寫在這個資料夾裡面
4.進入 /usr/local/nginx/conf/include 目錄,建立 nginx.node.conf 檔案,在裡面輸入如下程式碼:
upstream nodejs { server 127.0.0.1:3000; #server 127.0.0.1:3001; keepalive 64; } server { listen 80; server_name www.penguu.com penguu.com; access_log /var/log/nginx/test.log; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Nginx-Proxy true; proxy_set_header Connection ""; proxy_pass http://nodejs; } }
5.進入/usr/local/nginx/conf ,開啟nginx.conf, 在http 裡面新增 include /usr/local/nginx/conf/include/*
6.重啟nginx , 輸入 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
在瀏覽器輸入penguu.com ok.