5.4. 配置包含文件

配置文件可以包含其它文件,如把虚拟主机配置单独移到外面的一个文件里,然后在hetao.conf中包含它。在配置文件中任意位置加入

  1. !include filename

或者

  1. !include "filename"

filename是相对于hetao.conf所在路径的相对路径+包含文件名。如

  1. "website" :
  2. {
  3. "domain" : "" ,
  4. "wwwroot" : "/var/hetao/www" ,
  5. "index" : "/index.html,/index.htm" ,
  6. "access_log" : "/var/hetao/log/access.log" ,
  7. !include hetao_redirect.conf
  8. ...

hetao_redirect.conf

  1. redirect { "domain":"www.google.com" , "new_domain":"www.baidu.com" } ,

注意:小心json格式中的','