我当前的设置是:
我的 nginxhttp
设置如下..
http{
# ...
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/.conf*;
}
conf
并且我有的每个服务器文件包括:
server{
# top settings..
include common.conf;
include wordpress.conf;
# etc ..
}
因此,我想要使用并拥有的是如下内容:
http{
# ...
for each server in (/etc/nginx/sites-enabled/*.conf){
include common.conf;
include wordpress.conf;
}
}
我想定义它common.conf
并wp
设置自动包含在每个服务器中,在http
块中定义它,而不是将其包含在每个server
块中。
谢谢你的帮助