nginx 전송 요청 방법 안내
location / {
proxy_pass http://example.com:portdefault;
}
}
}
이상 의 설정 은 다음 규칙 에 따라 요청 을 전달 합 니 다 (GET 와 POST 요청 은 모두 전달 합 니 다)장차http://example.com/mail/ 요청http://example.com:portmail/ 장차http://example.com/com/ 요청http://example.com:portcom/main/ 기타 모든 요청 을 전송http://example.com:portdefault/ 주의해 야 할 것 은 위의 설정 에서 webdefault 의 프 록 시 서버 설정 은 지정 한 UR 가 없습니다.I 의 경우 웹 메 일과 웹 컴 의 프 록 시 서버 설정 은 URI (각각 / 와 / main /) 를 지정 합 니 다.... 프 록 시 주소 에 URI 가 있 으 면 이 URI 는 location 에 일치 하 는 URI 부분 을 대체 합 니 다. 프 록 시 주소 에 URI 가 없 으 면 전체 요청 URL 로 프 록 시 서버 에 전 송 됩 니 다. 공식 문서 설명: If the URI is specified along with the address, it replace the part of the request URI that matches the location parameter. If the address is specified without a URI, or it is not possible to determine the part of URI to be replaced, the full request URI is passed (possibly, modified)위 설정 의 전송 예시:http://example.com/mail/index.html -> http://example.com:portmail/index.html http://example.com/com/index.html -> http://example.com:portcom/main/index.html http://example.com/mail/static/a.jpg -> http://example.com:portmail/static/a.jpg http://example.com/com/static/b.css -> http://example.com:portcom/main/static/b.css http://example.com/other/index.htm -> http://example.com:portdefault/other/index.htm FTP
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.