Windows+VMware+LAMP+Eclipseで自宅開発環境を構築する CentOS5.5にnginx0.8.53+node.js0.4.7+Redis2.2.6をインストールする の続きです。 nginxで一旦全てのリクエストを受け、静的ファイルならnginxで返して、動的ファイルはnode.jsで書いたWebサーバへ渡します。 listen 80; server_name 本番ドメイン名.dev; access_log /var/log/nginx/本番ドメイン名; location ~ \.node$ { proxy_pass http://localhost:49152; } location / { root /var/www/vhosts/本番ドメイン名/httpdocs; index index.html; } これでhttp://本番ドメイン名.dev/hoge.n