I am using docker compose to create 2 containers one for application running on Nginx and another for backend application on Nodejs(running on another port 4000) with routes of patterns “/org-metadata/, /proxy-api/, /node-api/**”.
I am trying to proxy the nginx to nodejs running on 4000, but it does not reach the backend. and the nginx gives the 502 Bad Gateway response.
P.S: my node app gives 503 service unavailable
when I run it from browser.
Can some one pls point where am I missing anything?
Here is my nginx.conf file:
worker_processes auto;
events {
worker_connections 8000;
multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
error_log /dev/stderr;
upstream backend {
server 127.0.0.1:4000;
}
server {
listen 80;
root /var/www;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
location ~ (proxy-api|node-api|\/api\/) {
proxy_pass http://backend;
proxy_redirect off;
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-XSS-Protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer-when-downgrade" always;
add_header Content-Security-Policy "default-src * data: 'unsafe-eval' 'unsafe-inline'" always;
}
}
}
docker-compose.yml
version: "3"
services:
nodejs:
build:
context: "./server"
ports:
- "4000:4000"
image: nodejs
container_name: nodejs
restart: unless-stopped
webserver:
build: "."
ports:
- "80:80"
image: webserver
container_name: webserver
restart: unless-stopped
depends_on:
- nodejs
Dockerfile for nodejs:
FROM node:11-alpine
WORKDIR /app
COPY . .
RUN npm ci
EXPOSE 4000
CMD [ "npm", "run", "start" ]
Dockerfile for nginx:
FROM nginx:1.15.2-alpine
COPY ./build /var/www
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
ENTRYPOINT ["nginx","-g","daemon off;"]
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
I’ve tried testing your setup, what fixed the problem at my end was adjusting this part in the Nginx config:
To:
You could also change the Droplet IP with the name of your docker container.
Then Nginx would be able to communicate with the node container on port 4000.
Another thing that you might want to add, as ff you are using an upstream block, it may be advisable to set the Host header explicitly:
Hope that this helps! Regards, Bobby
Thanks @bobbyiliev it worked. Another issue, the API I called continuously redirects with 302, is it something to do with my API or nginx config?