码迷,mamicode.com
首页 > 其他好文 > 详细

nginx安装、部署前端、请求转发

时间:2020-03-26 16:34:16      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:cal   cm5   serve   name   local   line   get   root   col   

1、安装可以参考这篇博客

2、部署前端程序

 location /
         {
            root   /var/www/dist;  # 前端程序所在路径
            index  index.html index.htm;  # 指定请求的首页html
        }

3、转发,请关注着色部分

 server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
        #部署前端的程序
        location /
         {
            root   /var/www/dist;
            index  index.html index.htm;
        }

        #转发使用 
        location /docs {
        #将http://132.232.44.72:8080/docs/访问地址转发到  http://132.232.44.72:80/docs/这个地址       
                proxy_pass http://132.232.44.72:8080/docs/;
         }
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
}

完毕

nginx安装、部署前端、请求转发

标签:cal   cm5   serve   name   local   line   get   root   col   

原文地址:https://www.cnblogs.com/ywjfx/p/12575196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!