2012-07-16 58 views

回答

5

您必須創建兩個虛擬主機使用server塊。

讓我們假設/var/www包含domain1.comdomain2.com目錄與任何HTML頁面,CGI腳本,...

server { 
    listen   12.34.56.78:80; 
    server_name  domain1.com 

    index   index.html; 
    root   /var/www/domain1.com 
} 

server { 
    listen   98.76.54.32:80; 
    server_name  domain2.com; 

    index   index.html; 
    root   /var/www/domain2.com 
}