1.修改默認nginx.conf 文件
加入 include /usr/www/ngconfs/*.conf;
讀取ngconfs文件下所有 *.conf文件

2.ngconfs 下多個文件創建
第二步驟主要在於 監聽80端口
網站背后對應實際網站問端口4302,從而實現公用80端口 部署多個網站
location / {
proxy_pass http://localhost:4302/;
}

