NGINX VHOST配置文件的使用 之四
阿新 • • 發佈:2018-07-16
pes cti keepal 方法 ica oct err eve 新建 1、vhost配置文件的作用
作用:vhost配置文件的作用是為了將多個server配置文件的信息,單獨存放,不過於集中在nginx.conf配置中,這樣有用助於故障排除,如配置查看
2、創建vhost文件更夾,並指定加載方法
[root@localhost conf]# pwd /app/nginx-1.6.3/conf [root@localhost conf]# mkdir vhost [root@localhost conf]# vi /app/nginx-1.6.3/conf/nginx.conf #修改nginx.conf的配置文件,增加include目錄 worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; include vhost/*.conf; #增加內容,當nginx啟動時,加載vhost目錄下的所有conf文件 }
3、把原有nginx配置文件的server字段,復制到default.conf裏
[root@localhost conf]# vi /app/nginx-1.6.3/conf/vhost/default.conf server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } 備註:後面的server字段的配置文件,就可以在vhost新建conf文件就可以。
NGINX VHOST配置文件的使用 之四