zoukankan      html  css  js  c++  java
  • nginx安装、部署前端、请求转发

    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;
            }
    }

    4、开启多个端口服务

     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;
            }
    }
    ###开启 8000端口 server { listen
    8000; server_name localhost; location /examples { proxy_pass http://localhost:8080/examples/; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }

    完毕

  • 相关阅读:
    log4j配置
    Fragment配合RadioGroup实现点击切换布局
    (转)[原] Android 自定义View 密码框 例子
    标题栏透明度变化
    Android 监听ScrollView的滑动
    Android进度条学习
    Android-正方形的容器
    Android添加图片到ListView或者 RecyclerView显示
    Android打开相机和打开相册
    2020新年快乐
  • 原文地址:https://www.cnblogs.com/ywjfx/p/12575196.html
Copyright © 2011-2022 走看看