ngnix 根据不同域名转发不同服务

ngnix 根据不同域名转发不同服务

场景:

我只有一台阿里云服务器,然后搭建了两个网站A,B

有两个域名:www.yunmasoft.com ,www.yhskyc.com

目的:

(1)访问两个域名时都是访问同一台主机

(2)www.yunmasoft.com 访问网站A;

www.yhskyc.com访问的是网站B 

使用nginx 如何实现呢?

期望:

http://www.yunmasoft.com/ 访问 tomcat:/home/whuang/software/apache/apache-tomcat-7.0.53

http://www.yhskyc.com/       访问 tomcat:/home/whuang/software/apache/tomcat-7.0.53_yh

两个域名访问的是不同的tomcat 服务

nginx配置步骤:

步骤一:安装nginx

请自行谷歌

 

步骤二:创建映射文件

创建目录:/usr/local/nginx-1.7.8/vhosts

在/usr/local/nginx-1.7.8/vhosts 中创建两个文件:

yhskyc.com.conf  yunmasoft.com.conf

yhskyc.com.conf  内容为:

server {

        listen 80;

        server_name yhskyc.com www.yhskyc.com;

 

        location / {

                proxy_pass    http://182.92.97.72:8084;

        #       proxy_redirect off ;

 

                index index.php index.html index.htm;

        }

        error_page 500 502 503 504 /50x.html;

 

 

}

 

 

yunmasoft.com.conf 内容如下:

server {

        listen 80;

        server_name yunmasoft.com www.yunmasoft.com;

 

        location / {

                proxy_pass    http://182.92.97.72:8083;

                # proxy_redirect on ;

 

                index index.php index.html index.htm;

        }

        error_page 500 502 503 504 /50x.html;

 

 

}

 

 

步骤三:把这两个文件包含到nginx主配置文件

修改/conf/nginx.conf

在html节点添加

include /usr/local/nginx-1.7.8/vhosts/*;

 

/conf/nginx.conf 内容如下:

Java代码  ngnix 根据不同域名转发不同服务
  1. #user  nobody;  
  2. worker_processes  1;  
  3.   
  4. #error_log  logs/error.log;  
  5. #error_log  logs/error.log  notice;  
  6. #error_log  logs/error.log  info;  
  7.   
  8. #pid        logs/nginx.pid;  
  9.   
  10.   
  11. events {  
  12.     worker_connections  1024;  
  13. }  
  14.   
  15.   
  16. http {  
  17.     include       mime.types;  
  18.     default_type  application/octet-stream;  
  19.   
  20.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
  21.     #                  '$status $body_bytes_sent "$http_referer" '  
  22.     #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  23.   
  24.     #access_log  logs/access.log  main;  
  25.   
  26.     sendfile        on;  
  27.     #tcp_nopush     on;  
  28.   
  29.     #keepalive_timeout  0;  
  30.     keepalive_timeout  65;  
  31.   
  32.     #gzip  on;  
  33.   
  34.     server {  
  35.         listen       80;  
  36.         server_name  localhost;  
  37.   
  38.         #charset koi8-r;  
  39.   
  40.         #access_log  logs/host.access.log  main;  
  41.   
  42.         location / {  
  43.         add_header Access-Control-Allow-Origin *;  
  44.             root   /var/www/html;  
  45.             index  index.html index.htm;  
  46.         }  
  47.   
  48.         #error_page  404              /404.html;  
  49.   
  50.         # redirect server error pages to the static page /50x.html  
  51.         #  
  52.         error_page   500 502 503 504  /50x.html;  
  53.         location = /50x.html {  
  54.             root   html;  
  55.         }  
  56.   }  
  57. include /usr/local/nginx-1.7.8/vhosts/*;  
  58. }  

 

参考:http://blog.csdn.net/zacklin/article/details/7859680

上一篇:Android开发实践:掌握Camera的预览方向和拍照方向


下一篇:项目的自述文档(README)模板