zoukankan      html  css  js  c++  java
  • 基于端口的配置方式

    1.配置多端口的虚拟主机

    [root@web01 conf.d]# vim port.conf

    server {

    listen 81;

    location / {

    root /code_81;

    index index.html;

    }

    }

    server {

    listen 82;

    location / {

    root /code_82;

    index index.html;

    }

    }        

     

    2.根据配置文件创建所需的目录

    [root@web01 conf.d]# mkdir /code_8{1..2}

    [root@web01 conf.d]# echo "81" > /code_81/index.html

    [root@web01 conf.d]# echo "82" > /code_82/index.html

     

    3.检查语法并重启服务

    [root@web01 conf.d]# nginx -t

    nginx: the configuration file /etc/nginx/nginx.conf syntax is ok

    nginx: configuration file /etc/nginx/nginx.conf test is successful

    [root@web01 conf.d]# systemctl restart nginx

     

    4.如何去访问

        http://10.0.0.7:82/

  • 相关阅读:
    冒泡排序
    pdo 单例类
    php 事物处理
    支付宝支付
    反向代理和负载均衡
    execl导出
    网络层
    OSI 7层 TCP/IP 4层 综合5层
    面试总结
    CMD AMD
  • 原文地址:https://www.cnblogs.com/yexiuer/p/10804575.html
Copyright © 2011-2022 走看看