一 应用场景描述
应开发同事需求,需要在开发环境的Nginx能够根据不同的域名使用不同的root路径。
例如如果域名是game4.xxx.com,就使用root路径为/data/public/game4
game5.xxx.com,就使用root路径为/data/public/game5
game6.xxx.com,就是用root路径为/data/public/game6
二 解决方法
server { listen 80; server_name *.xxx.com; set $game_name game4; if ($host ~ "game5") { set $game_name game5; } if ($host ~ "game6") { set $game_name game6; } root /data/public/$game_name/; client_max_body_size 5m; autoindex off; location / { if (!-e $request_filename){ rewrite /(.*) /index.php last; } index index.php; autoindex off; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name; include fastcgi_params; } }
这里设置变量$game_name,然后在root路径中使用这个变量
三 相关Nginx指令介绍
1.set指令
用于定义一个变量,并为变量赋值
作用范围为if,location,server
如以上的
set $game_name game4;
2.if指令
if(condition) {...}
作用范围为
如:
if ($host ~ "game-taiwan-5")
{
set $game_name game5;
}
if指令用于检查一个条件是否符合,如果条件符合,则执行大括号内的内容。
参考文档:
http://serverfault.com/questions/241005/nginx-change-root-directory-based-on-server-name
时间: 2024-10-13 11:36:01