メモしてください.どうやってnodejs inxの逆代理を配置しますか?

1703 ワード

本論文は、macでnodejsを構成するインバースエージェントである.
1.nodejsをインストールする前にインストールしました.
2.nginxをインストールして、直接ソースのインストールを採用しています.
3.入る /usr/local/nginx/confディレクトリは、このディレクトリでincludeファイルを作成すると、私のプロファイルはこのフォルダに書き込みます.
4.入る /usr/local/nginx/conf/includeディレクトリを作成します. nginx.node.com nfファイルは、下記のコードを入力します.
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.com nfを開いてhttpにincludeを追加する /usr/local/nginx/conf/include/*
6.nginxを再起動し、入力する /usr/local/nginx/sbin/nginx-c/uscal/nginx/conf/nginx.co nf
ブラウザでpengu.com okを入力します.