5.4. 配置包含文件
配置文件可以包含其它文件,如把虚拟主机配置单独移到外面的一个文件里,然后在hetao.conf中包含它。在配置文件中任意位置加入
- !include filename
或者
- !include "filename"
filename是相对于hetao.conf所在路径的相对路径+包含文件名。如
- "website" :
- {
- "domain" : "" ,
- "wwwroot" : "/var/hetao/www" ,
- "index" : "/index.html,/index.htm" ,
- "access_log" : "/var/hetao/log/access.log" ,
- !include hetao_redirect.conf
- ...
hetao_redirect.conf
- redirect { "domain":"www.google.com" , "new_domain":"www.baidu.com" } ,
注意:小心json格式中的','