Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
3
votes
0 answers

How do I get jwilder/nginx-proxy to work on Amazon ECS? I am getting a 503 error

Here's my setup: Docker Compose File for my wordpress site version: '3' services: wordpress: # image: wordpress image: 506641774060.dkr.ecr.us-west-2.amazonaws.com/cashinyourpoints:latest restart: always ports: - 8081:80 …
Toli
  • 5,547
  • 8
  • 36
  • 56
3
votes
1 answer

502 Bad Gateway Nginx Reverse Proxy

I'm pretty new with docker and docker-compose. I'm trying to host multiple websites with HTTPS on a single server. SSL certs can t be generated because locahost it is not a valid host ok normal. And i'm getting a 502 bad gateway error. It seems…
Bigbenny
  • 243
  • 1
  • 3
  • 10
3
votes
0 answers

Builds stuck in pending state drone

I'm using drone:0.8 with the following configuration but the only two first jobs are succeeded in building. The rest of jobs are stuck in the pending state. I'm deploying drone using Docker Swarm stack deploy. Here is my configuration file: version:…
Iman
  • 1,017
  • 10
  • 26
3
votes
1 answer

Docker Compose and Nginx reverse proxy: I can't access the backend through the proxy

I have a project which contains 3 containers : reverse proxy container (jwilder-nginx-proxy image), fontend container (nginx container serving an application developed and bundled by Vue js) and a backend container (a node6 container serving a…
3
votes
0 answers

Several stacks with same container: port already in use as an ingress port

I'm trying to achieve the following setup: I have a center stack containing my nginx-proxy stuff. This stack declares a network (let's call it nginx_proxy_net) Next, I want to setup 2 stacks for 2 wordpress installs, each one of them is totally…
3
votes
0 answers

Nginix proxy server error: "upstream server temporarily disabled while connecting to upstream"

I'm getting an error when using the docker image for setting up an nginx proxy server: nginx-proxy. If I hit and point on my site the response is incredibly slow to come back in some instances. This happens pretty much immediately, if I hit an…
fraxture
  • 5,113
  • 4
  • 43
  • 83
3
votes
1 answer

Docker nginx proxy works with docker-compose v1, but not v2?

I'm trying to setup an nginx proxy for my docker containers to use simple subdomains instead of ports. I like using docker-compose to startup my containers and since I'm quite new to docker in general, I started using v2 format right away. I've…
noone
  • 19,520
  • 5
  • 61
  • 76
3
votes
0 answers

Can not register more than one subdomain this nginx and nginx-proxy with docker container

I am running a nginx container with nginx-proxy and letsencrypt in docker. I want two apps to run on seperate subdomains: jenkins.mydomain.de wekan.mydomain.de I start my nginx compose-file with the proxy and letsencrypt seperate from these…
Noixes
  • 1,158
  • 12
  • 25
2
votes
2 answers

Configure Symfony's trusted proxies for jwilder/nginx-proxy

I am trying to get client IP with $request->getClientIp(); and it returns 172.19.0.2, but that is not my public IP. I stumbled upon this doc to set up trusted proxies so I tried doing like this: // web/app_dev.php // ... $request =…
Ignas Damunskis
  • 1,515
  • 1
  • 17
  • 44
2
votes
0 answers

SSL_do_handshake() failed with nginx-proxy behind cloudflare

I am struggling on this problem for 2-3 days now. My problem is : I get "SSL_do_handshake() failed" when doing proxy_pass from one reverse proxy to another. I have a setup that looks like that : gcp VM 1 containers : - nginx reverse proxy 1 - acme…
2
votes
0 answers

How to set up Gitlab CE + Gitlab Runner in Docker compose over HTTPS on localhost?

I'm not good at Docker and trying to install the configuration below on my localhost. I know that Gitlab Runner works over https so I've found a solution to use nginx-proxy. Here is my docker-compose.yml. It's not my conf, I just was trying to…
Evgeny Musonov
  • 181
  • 3
  • 9
2
votes
2 answers

"jrcs/letsencrypt-nginx-proxy-companion" docker image: too many certificates already issued for exact set of domains

I'm using jwilder/nginx-proxy and jrcs/letsencrypt-nginx-proxy-companion images to create the ssl certificates automatically. When the server is updated and I run docker-compose down and docker-compose up -d the following error…
Ian R
  • 23
  • 1
  • 8
2
votes
1 answer

jwilder/nginx-proxy: Where is the network configured? (Not in docker-compose.yml)

I am new to Docker and found one thing I don't understand: I downloaded the image jwilder/nginx-proxy from the Github repo nginx-proxy/nginx-proxy and ran it with docker-compose up. This will bring on a new network nginxproxy_default, which the new…
Benni
  • 1,023
  • 11
  • 15
2
votes
1 answer

Getting mixed content warning - WordPress behind nginx-proxy with letsencrypt ssl

I have a WordPress site running in Docker behind nginx with HTTPS (Letsencrypt), but I am having trouble with some essential scripts that won't load because the browser claims they are unauthenticated. I also see the dreaded 'Skip to content' link…
ChrisM
  • 2,128
  • 1
  • 23
  • 41
2
votes
1 answer

Problem with nginx location and proxy_pass

I have a rule in my nginx.conf that does not work and I have no idea why. According to the documentation it should work. Part of the config looks like this. The first rule on port 8100 works and redirects the call http://example.com/api/domains to…
Mikael Nyborg
  • 111
  • 3
  • 12
1 2
3
12 13