码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx的配置文件

时间:2018-03-23 18:20:44      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:localhost   one   端口   server   pos   body   color   nginx   反向代理负载均衡   

1,通过端口区分(一个Service就是一个虚拟主机)

  配置:  

server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }

2,通过域名来区分

技术分享图片
server {
        listen       80;
        server_name  www.taobao.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html-taobao;
            index  index.html index.htm;
        }
    }
    server {
        listen       80;
        server_name  www.baidu.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html-baidu;
            index  index.html index.htm;
        }
    }
View Code

3,反向代理负载均衡

技术分享图片
    upstream tomcat1 {
    server 192.168.25.148:8080;
    }
    server {
        listen       80;
        server_name  www.sina.com.cn;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass   http://tomcat1;
            index  index.html index.htm;
        }
    }
    upstream tomcat2 {
    server 192.168.25.148:8081;
    }
    server {
        listen       80;
        server_name  www.sohu.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass   http://tomcat2;
            index  index.html index.htm;
        }
    }
View Code

配置文件位置  :

nginx/conf/nginx.conf

Nginx的配置文件

标签:localhost   one   端口   server   pos   body   color   nginx   反向代理负载均衡   

原文地址:https://www.cnblogs.com/soficircle/p/Nginx.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!