|
|
server
|
|
|
{
|
|
|
listen 80;
|
|
|
server_name yhb.test.yoho.cn *.yhb.test.yoho.cn;
|
|
|
server_name buy.test.yoho.cn guang.test.yoho.cn;
|
|
|
|
|
|
#access_log /Data/logs/access.buy.test.yoho.cn.log combined;
|
|
|
error_log /Data/logs/error.buy.test.yoho.cn.log warn;
|
|
|
|
|
|
root /Data/code/git/yohobuy/yohobuy/m.yohobuy.com/public;
|
|
|
|
|
|
set $sub '';
|
|
|
if ($host ~* ([^\.]+)\.yhb.test.yoho.cn$) {
|
|
|
set $sub $1;
|
|
|
}
|
|
|
#match ip
|
|
|
deny 192.168.1.1;
|
|
|
allow 218.94.75.50;
|
|
|
allow 218.94.75.58;
|
|
|
allow 123.56.138.21;
|
|
|
deny all;
|
|
|
|
|
|
location ~* \.html$ {
|
|
|
root /Data/code/git/yohobuy/assets;
|
|
|
if (!-f $request_filename){
|
|
|
root /Data/code/git/yohobuy/yohobuy/m.yohobuy.com/public;
|
|
|
rewrite ^/(.+)$ /index.php?$1& last;
|
|
|
}
|
|
|
expires 7d;
|
|
|
}
|
|
|
|
|
|
location / {
|
|
|
index index.php;
|
|
|
if (!-f $request_filename){
|
|
|
rewrite ^/(.+)$ /index.php?$1& last;
|
|
|
if (-f $request_filename){
|
|
|
expires 3m;
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -37,22 +30,21 @@ server |
|
|
expires 7d;
|
|
|
}
|
|
|
|
|
|
location ~ .*\.php?$ {
|
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
|
fastcgi_index index.php;
|
|
|
#fastcgi_param PATH_INFO $fastcgi_script_name;
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
include fastcgi_params;
|
|
|
location / {
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy;
|
|
|
proxy_set_header Host $host;
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
proxy_set_header Accept-Encoding "gzip";
|
|
|
}
|
|
|
|
|
|
error_page 403 = http://buy.test.yoho.cn;
|
|
|
error_page 404 = http://buy.test.yoho.cn/error.html;
|
|
|
}
|
|
|
|
|
|
server
|
|
|
{
|
|
|
listen 80;
|
|
|
server_name staticyhb.test.yoho.cn;
|
|
|
server_name static.buy.test.yoho.cn;
|
|
|
|
|
|
#access_log /Data/logs/access.static.buy.test.yoho.cn.log combined;
|
|
|
#error_log /Data/logs/error.static.buy.test.yoho.cn.log warn;
|
...
|
...
|
|