nginx 역방향 에이전트 크로스 도 메 인 문제 해결

517 단어
앞 뒤 가 분리 되 었 습 니 다. 전단 접근 경로 www. domain. com, 백 엔 드 API 요청 주소: api. domain. com 은 nginx 의 역방향 대 리 를 통 해 도 메 인 간 요청 문 제 를 해결 합 니 다.
nginx 설정 은 다음 과 같 습 니 다.
listen 80;
server_name www.domain.com;
location ^~ / {
    root /usr/local/src/webroot;
    access_log off;
    expires -1;
}
location ^~/api/{
    rewrite ^/api/(.*)$ /$1 break;
    proxy_pass http://api.domain.com/;
  }
}

요청 백 엔 드 API 주소: www. domain. com / api / xx / bb / dd 실제 백 엔 드 접근 주소: api. domain. com / xx / bb / dd

좋은 웹페이지 즐겨찾기