首頁  >  文章  >  後端開發  >  nginx虛擬主機別名配置

nginx虛擬主機別名配置

WBOY
WBOY原創
2016-07-28 08:29:271082瀏覽

1.修改hosts檔案
[root@slave html]# vi /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4192.168.0.203 www.wolf.com bbs.wolf.com blog.wolf.com   Wolf.com
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教學有興趣的朋友有幫助。


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn