All Questions
Tagged with nginx-reverse-proxy docker-compose
201 questions
0
votes
1
answer
50
views
Nginx reverse proxy configuration problem
I have the follwoing nginx configuration :
server {
listen 80;
server_name /*public ip address here , did not want to share it*/;
# listen 80;
# server_name _;
Proxy requests to ...
1
vote
0
answers
29
views
How do I get non-dockerized Nginx (with SSL) to reverse proxy to dockerized backend (docker composed Springboot with Postgresql)?
I have set up Nginx to run on a VPS server and installed SSL using LetsEncrypt. Both Nginx and LetsEncrypt are typical standard installation on the server machine running Ubuntu. I then loaded ...
0
votes
0
answers
173
views
Laravel Websocket with Docker and Nginx Proxy Manager in Docker
I am currently trying to find the right settings to deploy my little app in world wide web. But i do struggle with the websockets. In my local environment it works perfect and i can play the game. ...
0
votes
0
answers
63
views
can't access ngix proxy docker container running on fedora server 41
Im having trouble accessing nginx proxy admin running in docker container on fedora server 41. I have ports 443,80,81, 9090 open on my router. im able to login to my fedora server cockpit gui with ...
0
votes
1
answer
41
views
How could I solve solve nginx, can't find host error on docker?
I have the following nginx docker working as a reverse proxy:
location /dev {
proxy_pass http://dev-server.com;
}
When trying to running docker, I get:
host not found in upstream "dev-server....
1
vote
1
answer
50
views
Nginx listens http but not https
here is my nginx config file,
server {
listen 80;
server_name api.xxxx.io;
client_max_body_size 50M;
listen 443 ssl;
ssl_certificate /etc/nginx/ssl/public.crt;
...
0
votes
0
answers
28
views
SSL issue in django web application
I am working on a django web application in python and I use docker containers. My ssl certificate has expired and I want to get a signed certificate from a domain such as go daddy. I tried to use a ...
0
votes
0
answers
38
views
Get Client IP address in Django from nginx proxy config [duplicate]
I have the following setup to run my Django server and I want to get a client IP address in Django server but it is giving me wrong IP address
Nginx proxy conf
events {
worker_connections 1024;
}
...
-1
votes
1
answer
83
views
Can't proxy request from one container to another using nginx
I've got an api running on 8000th port in a container, and I'm trying to proxy requests from 80th port to this api. Nginx is also running in a separate container. So, when I enter http://localhost:80 ...
0
votes
1
answer
76
views
nginx page displaying instead of home page
I'm using Docker to serve an Angular application using Nginx. However, when I access my application at http://localhost:8080/, I'm seeing the default Nginx welcome page instead of my Angular ...
0
votes
0
answers
16
views
Nginx - Error Code 111 Connection Refused - Docker + React
I have an application (My SQL, Redis, NGINX, Django, React) with is running on docker. Every file app is running fine where as react is giving 502 Bad Request. I am new to docker.
2024/08/18 07:50:54 ...
0
votes
1
answer
70
views
nginx reverse proxy to backend inside docker
I'm trying to deploy my app on a server with docker compose:
services:
frontend:
container_name: frontend
depends_on:
- backend
build:
context: frontend
dockerfile: ./...
0
votes
0
answers
306
views
docker compose --> nginx cannot load certificate
I am very new to Docker and containers.
I am using docker-compose to start up my application. I keep getting this error:
2024/07/19 17:05:54 [emerg] 1#1: cannot load certificate "/etc/nginx/certs/...
0
votes
1
answer
500
views
next.js reverse proxy with nginx/1.27.0 using docker-compose - 502 Bad Gateway
I am having problem setting up nginix with https as a reverse proxy for my next.js app.
I am running this on EC2 Linux/UNIX (Amazon linux )
this is my setup:
nginx.conf
events {}
http {
...
0
votes
0
answers
29
views
How to Securely Upload Multiple SSL Certificates on remote server with CircleCI and Docker
I'm working on a DevOps workflow using CircleCI for deployments and Docker for containerized applications.
I need to automate uploading Let's Encrypt SSL certificates (multiple certificates possible) ...