I'm trying to configure Nginx (inside Docker container) with Node.js (outside, on host machine). The Nginx configuration uses upstream and proxy-pass directives:
upstream helloworld {
server localhost:8080;
}
server {
listen 443;
ssl on;
ssl_certificate /some/cert.crt;
ssl_certificate_key /some/cert.key;
location / {
proxy_pass http://helloworld;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
}
}
Node app listens on port 8080 of the host machine. Now, I start Nginx container
docker run \
-d \
-p 80:80 \
-p 443:443 \
-p 8080:8080 \
-v /some/mounts:/to/some/mounts \
--name nginx \
nginx:alpine
What I expect is that Nginx receives connections to ports 80 and 443 and forwards them to port 8080 inside of its container, which will then be forwarded to port 8080 of the host machine to the Node app (-p 8080:8080), however it gives an error: Error starting userland proxy: listen tcp 0.0.0.0:8080: bind: address already in use.
I've tried changing localhost to 127.0.0.1 and even to the ip-address of the host machine (172.17.0.1 produced by $ /sbin/ip route from inside of the Nginx container), but none of it seems to work. If I don't use -p 8080:8080 while starting the container it doesn't work either.
Even though 172.17.0.1 is the host machine's ip-address, I can't connect to it from within the Nginx container:
$ wget 172.17.0.1:8080
Connecting to 172.17.0.1:8080... failed: Connection refused.
Now, I know I can Dockerize my Node app and use --link argument when starting Nginx container, but it is not a solution for the moment, since it requires a lot of re-writing of the Node app.
Any help is very much appreciated.