मैं दो docker कंटेनरों के लिए प्रॉक्सी पास करने के लिए 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: // को हटा दिया तो उपसर्ग त्रुटि बंद हो गई। ऐसा क्यों है?