Nginx 전단 접근 백 엔 드 로 컬 인터페이스 구현

1075 단어
Nginx 는 두 곳 을 설정 하면 됩 니 다. 먼저 자신의 프로젝트 서 비 스 를 설정 하고 자신의 프로젝트 가 실 행 될 수 있 도록 합 니 다.
        location / {
            root    /web/xiangmu/public;  //        
            index index.html index.php;
        }

인터페이스 요청 백 엔 드 설정:
     location /api/ {
            proxy_pass http:// 192.168.1.1;(      ,        ,  80        )
            proxy_set_header: Host $host;
        }

주의 점 (백 엔 드 인터페이스 설정):
  ####            404 ,                       。
 1、proxy_pass          /       /api/      uri    ,   /api/       ,       / ;     。   /          ,nginx    location        /api/   。
                  ,    a.html  :
                  : http:// 192.168.1.1/api/a.html;
              :proxy_pass http:// 192.168.1.1/;(      ),           : http:// 192.168.1.1/a.html。

 2、proxy_pass      hosts   ip  ,           ip  。

 3、location   ~ (     )  ~* (      )        。      ,  location     location ~* /api/ { }          api        。

다음으로 전송:https://www.cnblogs.com/xinxinmifan/p/nginx-setting.html

좋은 웹페이지 즐겨찾기