yohobuywap.conf 7.75 KB
server
{
    listen       80;
    server_name   m.yohobuy.com nginx1.m.yohobuy.com;

    access_log /Data/logs/nginx/access_wap.yohobuy.com.log  fenxi;
    error_log  /Data/logs/error_wap.yohobuy.com.log warn;
    root  /Data/PE/yohobuy_H5/yohobuy/m.yohobuy.com/public;

     # old idc
     include vhosts/location/yohobuywap_idc.conf;
     # app
     include vhosts/location/yohobuywap_app.conf;
     # php
     include vhosts/location/yohobuywap_php.conf;
     # node
     #include vhosts/location/yohobuywap_node.conf;
     # static file
     include vhosts/location/yohobuywap_static.conf;
    
     #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;
        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  m.yohobuy.com;

     ssl_certificate      /Data/local/nginx-1.8.0/conf/ssl/yohobuy.pem;
     ssl_certificate_key  /Data/local/nginx-1.8.0/conf/ssl/yohobuy.key;

     # https key
     include vhosts/location/yohobuywap_httpskey.conf;

     root  /Data/PE/yohobuy_H5/yohobuy/m.yohobuy.com/public;

     access_log /Data/logs/nginx/access_wap.yohobuy.com.log  fenxi;
     error_log  /Data/logs/error_wap.yohobuy.com.log warn;

     # old idc
     include vhosts/location/yohobuywap_idc.conf;
     # app
     include vhosts/location/yohobuywap_app.conf;
     # php
     include vhosts/location/yohobuywap_php.conf;
     # node
     include vhosts/location/yohobuywap_node.conf;
     # static file
     include vhosts/location/yohobuywap_static.conf;
 
     #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;
        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;
    server_name  guang.m.yohobuy.com;

    access_log /Data/logs/nginx/access_wap.yohobuy.com.log  fenxi;
    error_log  /Data/logs/error_wap.yohobuy.com.log warn;
    root  /Data/PE/yohobuy_H5/yohobuy/m.yohobuy.com/public;

     # static file
     include vhosts/location/yohobuywap_static.conf;

     # guang rss
     location ^~  /rss {
        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";
     }

     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";
     }
}

server
{
    listen       80;
    server_name  *.m.yohobuy.com;

    access_log /Data/logs/nginx/access_wap.yohobuy.com.log  fenxi;
    error_log  /Data/logs/error_wap.yohobuy.com.log warn;
    
    root  /Data/PE/yohobuy_H5/yohobuy/m.yohobuy.com/public;
    # static file
    include vhosts/location/yohobuywap_static.conf;

      #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;
        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  *.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;
     
     access_log /Data/logs/nginx/access_wap.yohobuy.com.log  fenxi;
     error_log  /Data/logs/error_wap.yohobuy.com.log warn;

     root  /Data/PE/yohobuy_H5/yohobuy/m.yohobuy.com/public;

     # static file
     include vhosts/location/yohobuywap_static.conf;

     # idc old proxy. while login to write memcache and cookie (if need?)
     location ^~ /Passport/session {
        access_log /Data/logs/access.m.yohobuy.com.log  fenxi;
        proxy_redirect off;
        proxy_pass http://yohobuy_idc;
        proxy_set_header   Host   mapi.yohobuy.com;
        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";
     }
     # guang rss
     location ^~  /rss {
        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";
     }

     #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;
        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;
     server_name   cuxiao.m.yohobuy.com;

     access_log /Data/logs/nginx/access_wap.yohobuy.com.log  fenxi;
     error_log  /Data/logs/error_wap.yohobuy.com.log warn;

     location / {
        proxy_redirect off;
        proxy_pass http://yohobuy_idc;
        proxy_set_header   Host   cuxiao.m.yohobuy.com;
        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;
     server_name  analytics.m.yohobuy.com;
     error_log /Data/logs/nginx/access_m_analytics_error.log  warn;
     access_log /Data/logs/nginx/access_m_analytics.log fenxi;

     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;
     ssl_dhparam          /Data/local/nginx-1.8.0/conf/ssl/dhparam.pem;

     ssl_prefer_server_ciphers  on;
     ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
     ssl_ciphers "ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:AES256-GCM-SHA384:DES-CBC3-SHA";
     ssl_session_tickets off;
     ssl_session_cache shared:SSL:10m;

    root  /Data/PE/yohobuy_H5/yohobuy/m.yohobuy.com/public;


    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 $http_x_forwarded_for;
        proxy_set_header   Accept-Encoding "gzip";
        proxy_set_header   http_referer  $http_referer;
    }

}