|
|
server
|
|
|
{
|
|
|
listen 80;
|
|
|
server_name *.yohobuy.com;
|
|
|
server_name www.yohobuy.com *.yohobuy.com;
|
|
|
root /Data/code/git/web/yohobuy/yohobuy/www.yohobuy.com/public;
|
|
|
|
|
|
access_log /Data/logs/nginx/access_pc.yohobuy.com.log fenxi;
|
|
|
error_log /Data/logs/error.pc.yohobuy.com.log warn;
|
|
|
error_log /Data/logs/error_pc.yohobuy.com.log warn;
|
|
|
|
|
|
# static file
|
|
|
include vhosts/location/yohobuypc_static.conf;
|
...
|
...
|
@@ -16,6 +16,10 @@ server |
|
|
# php
|
|
|
include vhosts/location/yohobuypc_php.conf;
|
|
|
|
|
|
# node
|
|
|
include vhosts/location/yohobuypc_node.conf;
|
|
|
|
|
|
|
|
|
location = /index.html {
|
|
|
return 301 http://www.yohobuy.com/;
|
|
|
}
|
...
|
...
|
@@ -24,16 +28,68 @@ server |
|
|
rewrite /resource/getbanner(.*)$ https://www.yohobuy.com/common/getbanner$1 permanent;
|
|
|
}
|
|
|
|
|
|
# others http 301 redirect https
|
|
|
location ~* /special_(\d+)_(.*)\.html$ {
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy-old-www;
|
|
|
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";
|
|
|
}
|
|
|
|
|
|
location ~* /special/(\d+)_(.*)\.html$ {
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy-node;
|
|
|
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";
|
|
|
}
|
|
|
|
|
|
#https flag, 1 means HTTPS, 0 means HTTP
|
|
|
set $httpsFlag 1;
|
|
|
|
|
|
location / {
|
|
|
if ($httpsFlag = 1) {
|
|
|
return 301 https://$host$request_uri;
|
|
|
}
|
|
|
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy-pc;
|
|
|
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";
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
server
|
|
|
{
|
|
|
listen 80;
|
|
|
listen 443 ssl;
|
|
|
ssl_certificate /Data/local/nginx-1.8.0/conf/ssl/pc/server.pem;
|
|
|
ssl_certificate_key /Data/local/nginx-1.8.0/conf/ssl/pc/server.key;
|
|
|
|
|
|
server_name list.yohobuy.com item.yohobuy.com sale.yohobuy.com new.yohobuy.com search.yohobuy.com guang.yohobuy.com shop.yohobuy.com;
|
|
|
|
|
|
# https key
|
|
|
include vhosts/location/yohobuypc_httpskey.conf;
|
|
|
|
|
|
location / {
|
|
|
return 301 https://$host$request_uri;
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy-pc;
|
|
|
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";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
server
|
|
|
{
|
|
|
listen 443;
|
|
|
server_name *.yohobuy.com;
|
|
|
server_name www.yohobuy.com *.yohobuy.com;
|
|
|
|
|
|
ssl_certificate /Data/local/nginx-1.8.0/conf/ssl/pc/server.pem;
|
|
|
ssl_certificate_key /Data/local/nginx-1.8.0/conf/ssl/pc/server.key;
|
...
|
...
|
@@ -41,7 +97,10 @@ server |
|
|
root /Data/code/git/web/yohobuy/yohobuy/www.yohobuy.com/public;
|
|
|
|
|
|
access_log /Data/logs/nginx/access_pc.yohobuy.com.log fenxi;
|
|
|
error_log /Data/logs/error.pc.yohobuy.com.log warn;
|
|
|
error_log /Data/logs/error_pc.yohobuy.com.log warn;
|
|
|
|
|
|
# https key
|
|
|
include vhosts/location/yohobuypc_httpskey.conf;
|
|
|
|
|
|
# static file
|
|
|
include vhosts/location/yohobuypc_static.conf;
|
...
|
...
|
@@ -52,21 +111,38 @@ server |
|
|
# php
|
|
|
include vhosts/location/yohobuypc_php.conf;
|
|
|
|
|
|
# node
|
|
|
include vhosts/location/yohobuypc_node.conf;
|
|
|
|
|
|
location ~* /special_(\d+)_(.*)\.html$ {
|
|
|
return 301 http://$host$request_uri;
|
|
|
}
|
|
|
|
|
|
location ~* /special/(\d+)_(.*)\.html$ {
|
|
|
return 301 http://$host$request_uri;
|
|
|
}
|
|
|
|
|
|
location = /index.html {
|
|
|
return 301 https://www.yohobuy.com/;
|
|
|
return 301 http://www.yohobuy.com/;
|
|
|
}
|
|
|
|
|
|
location ^~ /resource/getbanner {
|
|
|
rewrite /resource/getbanner(.*)$ https://www.yohobuy.com/common/getbanner$1 permanent;
|
|
|
}
|
|
|
|
|
|
location / {
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy-pc;
|
|
|
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";
|
|
|
#https flag, 1 means HTTPS, 0 means HTTP
|
|
|
set $httpsFlag 1;
|
|
|
|
|
|
location / {
|
|
|
if ($httpsFlag = 0) {
|
|
|
return 301 http://$host$request_uri;
|
|
|
}
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy-pc;
|
|
|
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";
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -128,9 +204,13 @@ server |
|
|
ssl_certificate /Data/local/nginx-1.8.0/conf/ssl/pc/server.pem;
|
|
|
ssl_certificate_key /Data/local/nginx-1.8.0/conf/ssl/pc/server.key;
|
|
|
|
|
|
root /Data/code/git/web/yohobuy/yohobuy/huodong.yohobuy.com/public;
|
|
|
|
|
|
access_log /Data/logs/nginx/access_pc.yohobuy.com.log fenxi;
|
|
|
error_log /Data/logs/error_pc.yohobuy.com.log warn;
|
|
|
root /Data/code/git/web/yohobuy/yohobuy/huodong.yohobuy.com/public;
|
|
|
|
|
|
# https key
|
|
|
include vhosts/location/yohobuypc_httpskey.conf;
|
|
|
|
|
|
location ^~ /cuxiao {
|
|
|
proxy_redirect off;
|
...
|
...
|
@@ -154,21 +234,55 @@ server |
|
|
include vhosts/location/yohobuypc_static.conf;
|
|
|
}
|
|
|
|
|
|
#server
|
|
|
#{
|
|
|
# listen 80;
|
|
|
# listen 443 ssl;
|
|
|
#
|
|
|
# server_name yohobuy.com;
|
|
|
# ssl_certificate /Data/local/nginx-1.8.0/conf/ssl/pc/server.pem;
|
|
|
# ssl_certificate_key /Data/local/nginx-1.8.0/conf/ssl/pc/server.key;
|
|
|
#
|
|
|
# # access_log /Data/logs/nginx/access_pc.yohobuy.com.log fenxi;
|
|
|
# error_log /Data/logs/error_pc.yohobuy.com.log warn;
|
|
|
# location = / {
|
|
|
# return 301 https://www.yohobuy.com/;
|
|
|
# }
|
|
|
#}
|
|
|
|
|
|
server
|
|
|
{
|
|
|
listen 80;
|
|
|
listen 443 ssl;
|
|
|
|
|
|
server_name yohobuy.com;
|
|
|
ssl_certificate /Data/local/nginx-1.8.0/conf/ssl/pc/server.pem;
|
|
|
ssl_certificate_key /Data/local/nginx-1.8.0/conf/ssl/pc/server.key;
|
|
|
|
|
|
error_log /Data/logs/error_pc.yohobuy.com.log warn;
|
|
|
listen 443;
|
|
|
server_name analytics.m.yohobuy.com;
|
|
|
|
|
|
ssl_certificate /Data/local/nginx-1.8.0/conf/ssl/m.yohobuy.pem;
|
|
|
ssl_certificate_key /Data/local/nginx-1.8.0/conf/ssl/m.yohobuy.key;
|
|
|
|
|
|
# https key
|
|
|
include vhosts/location/yohobuywap_httpskey.conf;
|
|
|
|
|
|
location / {
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy_analytics;
|
|
|
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";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
# https key
|
|
|
include vhosts/location/yohobuypc_httpskey.conf;
|
|
|
server
|
|
|
{
|
|
|
listen 80;
|
|
|
server_name analytics.m.yohobuy.com;
|
|
|
|
|
|
location / {
|
|
|
proxy_redirect off;
|
|
|
proxy_pass http://yohobuy_analytics;
|
|
|
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";
|
|
|
}
|
|
|
|
|
|
location = / {
|
|
|
return 301 https://www.yohobuy.com/;
|
|
|
}
|
|
|
} |
...
|
...
|
|