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

nginx配置虚拟机

时间:2016-06-06 01:00:17      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

在/usr/local/nginx/conf目录下nginx.conf文件是nginx的配置文件。

技术分享

一、通过端口号区分虚拟机

在nginx.conf文件中添加一个Service节点,修改端口号:

server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

server {
        listen       81;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

二、通过域名区分虚拟机

①:需要修改nginx.conf配置文件
server {
        listen       80;
        server_name  test1.nginx.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

server {
        listen       80;
        server_name  test2.nginx.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

②:修改后重新加载配置文件
[root@localhost sbin]# ./nginx -s reload

至此结束……

nginx配置虚拟机

标签:

原文地址:http://www.cnblogs.com/huanchupkblog/p/5560535.html

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