nginx를 사용하여 두 개의 도커 컨테이너에 프록시를 전달하려고합니다. 다음은 업스트림 conf 파일입니다.
upstream api_servers {
server http://192.168.49.4:49155;
server http://192.168.49.4:49156;
}
이것이 내가로드하려고하는 것입니다 :
nginx: [emerg] invalid host in upstream "http://192.168.49.4:49155" in /etc/nginx/conf.d/api_upstream.conf:3
nginx: configuration file /etc/nginx/nginx.conf test failed
http : // 접두사를 제거하면 오류가 발생하지 않습니다. 왜 그런 겁니까?