0


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

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

  1. 在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;
        }
    }
}
  1. 再双击一下nginx.exe就可以了:

标签: 前端

本文转载自: https://blog.csdn.net/m0_63162560/article/details/139996730
版权归原作者 m0_63162560 所有, 如有侵权,请联系我们删除。

“用nginx部署两个前端(超简单,三步!)”的评论:

还没有评论