1.修改hosts檔案
[root@slave html]# vi /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
2、修改設定檔
[root@slave nginx]# vi nginx.conf
worker_processes 1;
事件{
worker_connections 1024;
}
http {
include on;
keepalive_time出65 ;
伺服器{
聽 80;
server_name root html/www;
索引 index.htmlindex.htm;
}
}
伺服器{
聽 80; root html/bbs;
索引 index.html 索引.htm;
}
}
伺服器{
聆聽 地點/ {
root html/blog;
索引index.html index.htm;
}
}
"nginx.conf" 38L, 751C 寫入
3、文法檢查
[root@slave n0/bin/ nginx -t
nginx:設定檔/etc/nginx/nginx.conf語法沒問題
nginx:設定檔/etc/nginx/nginx.conf測試成功
4、重新啟動服務
[ root @slave nginx]# /usr/sbin/nginx -s reload
5、測試
[root@slave nginx]# ping Wolf.com
PING www.wolf.com (192.168.0.203) 56 ( 84) 位元組資料。
來自www.wolf.com (192.168.0.203) 的64 個位元組:icmp_seq=1 ttl=64 time=0.097 ms
來自www.wolf.com (192.168.0.203): 的64 個位元組icmp_seq=2 ttl=64 time=0.039 ms
[root@slave nginx]#curl Wolf.com
http://www.wolf.com
[root@slave nginx]#curl www. Wolf .com
http://www.wolf.com
以上就介紹了nginx虛擬主機別名配置,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。