我尝试使用它的变量根据server_name指定根位置。我的配置如下:
server {
listen 80;
server_name ~^(host1|host2)\.example\.com$;
access_log /var/log/nginx/hosts_access.log main;
error_log /var/log/nginx/hosts_error.log;
if ($server_name = host1.example.com) {
set $root_path /var/www/host1;
}
if ($server_name = host2.example.com) {
set $root_path /var/www/host2;
}
root $root_path;
location = /robots.txt { return 200 "User-agent: *\nDisallow: /\n"; }
location / {
index index.html;
try_files $uri $uri/ /index.html =404;
}
location ~* \.(jpe?g|png|gif|ico)$ {
expires 1h;
access_log off;
}
location ~ /\.(ht|svn|git) {
deny all;
}
}
实际上我意识到这个配置可能没有正确设置,但是nginx没有找到nginx -t
命令的任何错误。我可以用这种方式进行配置吗?我应该使用$http_host/$host
代替$server_name
作为变量吗?
答案 0 :(得分:2)
您可以使用正则表达式中的变量来更改根目录。
server {
listen 80;
server_name ~^(?<subdomain>.+)\.example\.com$;
root /var/www/$subdomain;
...
}
如果在正则表达式中命名变量,则可以在整个服务器块中使用它。这使得if语句更容易。