Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
67
votes
1 answer

How to join the default bridge network with docker-compose v2?

I tried to setup an nginx-proxy container to access my other containers via subdomains on port 80 instead of special ports. As you can guess, I could not get it to work. I'm kind of new to docker itself and found that it's more comfortable for me to…
noone
  • 19,520
  • 5
  • 61
  • 76
53
votes
5 answers

Failed to create new OS thread (have 2 already; errno=22)

I have mac with M1 and if i try to run docker container with nginx-proxy by jwilder, I got this error: api_clever4sms_nginx-proxy | runtime: failed to create new OS thread (have 2 already; errno=22) api_clever4sms_nginx-proxy | fatal error:…
Petr Kvasnička
  • 643
  • 1
  • 4
  • 5
29
votes
3 answers

How to make Docker container see real user IP?

The problem Inside nginx-proxy Docker container (more info below), I always see the same IP adress for every connection: 172.18.0.1 (which is the nginx-proxy network gateway). For example: nginx.1 | www.my-site.tld 172.18.0.1 - -…
23
votes
3 answers

Docker nginx multiple apps on one host

I'm confused by how I should manage reverse proxy (nginx) with multiple independent webapps on the same host. I know that i can use https://github.com/jwilder/nginx-proxy and configure VIRTUAL_HOST per app but then I wont be able to have nginx…
Axon
  • 251
  • 1
  • 2
  • 9
13
votes
2 answers

How do I get PHP-FPM to work with nginx-proxy with FastCGI?

I am attempting to get nginx-proxy to work with the php-fpm variant of the official php image via fastcgi. Unfortunately, I seem to be unable to do so. I'm sure the problem is just something simple that I don't know about. I have followed the…
Sturm
  • 689
  • 2
  • 23
  • 52
11
votes
1 answer

Isolate containers on the jwilder/nginx-proxy network

I'm using jwilder/nginx-proxy to host multiple (web)apps from a single server. This is working great except that all services can communicate with each other because they are all on the same network because that is required for the proxy to…
Chris
  • 3,680
  • 6
  • 26
  • 43
8
votes
1 answer

nginx return file not found with nginx-proxy and doesn't load static files

I'm using nginx-proxy-automation to run my php application which is written using CodeIgniter 4 and the app structure is the following: php-application docker php-fpm config php.ini Dockerfile src …
sfarzoso
  • 1,356
  • 2
  • 24
  • 65
8
votes
0 answers

How to setup Nginx reverse proxy for multiple containers with each container having its own Nginx server

I've a VPS on which I want to deploy multiple web applications (for which I've already read posts and they're perfect when we have directly sub container). I want to manage each web application having its own nginx to route to its sub domains and…
8
votes
3 answers

docker and jwilder/nginx-proxy http/https issue

I'm using docker on osx via boot2docker. I have 2 hosts: site1.loc.test.com and site2.loc.test.com pointed to ip address of docker host. Both should be available via 80 and 443 ports. So I'm using jwilder/nginx-proxy for reverse proxy purposes. But…
falinsky
  • 7,229
  • 3
  • 32
  • 56
7
votes
1 answer

serving static files from jwilder/nginx-proxy

I have a web app (django served by uwsgi) and I am using nginx for proxying requests to specific containers. Here is a relevant snippet from my default.conf. upstream web.ubuntu.com { server 172.18.0.9:8080; } server { server_name…
7
votes
1 answer

Docker environment via nginx proxy results in 502 Bad Gateway

I am using nginx-proxy to connect subdomains to different docker services. Since one of the last image updates I am not able to connect to my gitlab instance anymore. I don't know if a nginx-proxy or gitlab update resulted in this issue. When I try…
caiuspb
  • 974
  • 1
  • 9
  • 23
6
votes
3 answers

invalid redirect_uri Keycloak when client is not on localhost

I've got my Keycloak Server deployed on aws EC2 behind a reverse Proxy and my Frontend client (Springbootapp) sits on a different EC2. Now I get Invalid redirect_uri error, although it works when front-client is on localhost and Keycloak on aws.…
6
votes
2 answers

jwilder/nginx-proxy: Not able to integrate ssl with Nginx

We are working on setting up multiple website hosting with single port and jwilder/nginx-proxy via SSL, We are able to deploy the solution without ssl and its working fine but while we are trying to put it with SSL its failing on HTTPs Call. Our…
Arvind Singh
  • 121
  • 1
  • 6
6
votes
1 answer

With jwilder nginx-proxy, how to proxypass a subdirectory url to a specific container?

I use jwilder/nginx-proxy to make a reverse proxy. I try to redirect http://localhost:8000/api to a specific php service. The directory structure: . +-- docker-compose.yml +-- nginx +-- nodejs | +-- index.js | +-- … +-- php | +--…
François Romain
  • 13,617
  • 17
  • 89
  • 123
6
votes
2 answers

Using Terraform with docker-compose and nginx-proxy

Has anyone tried using all these tools together? I'm currently using nginx-proxy and docker-compose for a four-container solution. I'm now trying to make deployment better/faster/cheaper and think terraform might be the piece I'm now looking for. My…
Daniel D
  • 3,637
  • 5
  • 36
  • 41
1
2 3
12 13