nginx配置虚拟机


在/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

至此结束……

关注我的公众号,精彩内容不能错过


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM