当前位置:首页 » 《随便一记》 » 正文

用nginx部署两个前端(超简单,三步!)

25 人参与  2024年09月14日 13:20  分类 : 《随便一记》  评论

点击全文阅读


1.首先在nginx的html目录下创两个文件夹分别用于放两个前端打包好的静态资源,并且把静态资源各自放好:

2. 在nginx的配置文件里,写好两个server。如图,写好两个前端要用的端口以及刚才那两文件夹的路径:

worker_processes  1;events {    worker_connections  1024;}http {    include       mime.types;    default_type  application/octet-stream;    server {        listen       8081;        server_name  localhost;        location / {            root   html/manage;            index  index.html index.htm;        }            error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }    }server {        listen       8082;        server_name  localhost;          location / {            root   html/client;            index  index.html index.htm;        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }    }}

3. 再双击一下nginx.exe就可以了: 

 


点击全文阅读


本文链接:http://zhangshiyu.com/post/159779.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1