Ip

如何使用 IP 地址和埠將域重定向到伺服器?

  • March 10, 2012

我有一個 VPS 伺服器。我有一個系統 - CentOS.

我使用程序 - node.js. 應用程序在地址和埠上執行:31.3.79.11:3000/

我想將沒有埠的域寫入瀏覽器。並從 IP 地址載入應用程序:http://31.3.79.11:3000

我想寫 - domain.com- 我想從http://31.3.79.11:3000.

如何將域重定向到此 ip 和埠?

以下連結建議使用 mod_redirect 和/或庫通過 node.js 執行 Apache

http://m.readwriteweb.com/hack/2010/12/how-to-run-apache-and-nodejs.php

圖書館: https ://github.com/nodejitsu/node-http-proxy

引用自:https://serverfault.com/questions/368271