美文网首页全栈笔记
Nginx 不同端口配置多个项目

Nginx 不同端口配置多个项目

作者: 小贤笔记 | 来源:发表于2020-01-07 10:18 被阅读0次

    首先安装 Nginx, 如何安装

    上述方法介绍了如何快速安装配置 Nginx, 但想要配置多项目的话该怎么做呢?

    server {
        listen 80; # 端口号
        server_name 121.43.124.99; # 地址
        error_log   /log/nginx/test.error.log;
        access_log  /log/nginx/test.access.log;
        root /code/dist1; # 静态资源路径
        index index.html index.htm;
        location / {
            try_files $uri $uri/ /index.html;
        }
    }
    
    • 执行 cp file1.conf file2.conf, 复制文件 file1.conf 的内容
    • 执行 vim file2.conf 修改 file2.conf
    server {
        listen 81; # 端口号
        server_name 121.43.124.99; # 地址
        error_log   /log/nginx/test.error.log;
        access_log  /log/nginx/test.access.log;
        root /code/dist2; # 静态资源路径
        index index.html index.htm;
        location / {
            try_files $uri $uri/ /index.html;
        }
    }
    

    打开浏览器, 输入ip 测试

    • 121.43.124.99
    • 121.43.124.99:81

    注: 如果不能正常打开, 检查是否添加端口权限

    • 打开云服务器管理控制平台, 添加端口


    相关文章

      网友评论

        本文标题:Nginx 不同端口配置多个项目

        本文链接:https://www.haomeiwen.com/subject/rgqractx.html