Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
0
votes
0 answers

jwilder/nginx-proxy with letsencrypt-nginx-proxy-companion-compose https issue

I am using jwilder/nginx-proxy, i wrote a custom.conf for supporting my custom-routing. upstream service-a { server web:8001; } upstream service-b { server jobrecommendation.web:8002; } server { listen 80; location /site-alive { …
0
votes
0 answers

Can I disable HTTPS on a specific path only, using jwilder/nginx-proxy?

I have a web app reverse-proxied through jwilder/nginx-proxy, which applies my TLS certificate. There is one path served by this app that I want to either have TLS disabled, or at least optional if http:// is specified. Using custom configuration,…
0
votes
1 answer

jwilder/nginx-proxy: serving static files for multiple apps - how to separate static files dir for different apps

I followed this question serving static files from jwilder/nginx-proxy to serve static files. This works fine with one app with static files. I want to add a second app, which means I need to have a root directory for static files per app.…
0
votes
1 answer

Nginx Reverse Proxy docker container gives 504 Gateway Time-out

I have two docker container running, one is the jwilder nginx reverse proxy. The other one is portainer. I can access the portainer backend by adding the :9443 port to the url. But the virtual host and virtual port configured for nginx reverse proxy…
Daomenis
  • 23
  • 6
0
votes
1 answer

Nginx container as a proxy to Flask app container - problem with domain and Flask.redirect() method

I got an Flask app in first container and NGINX on second, both hosted on the same server. On NGINX I want to have a proxy to first container, which have no ports exposed for reason that I want the NGINX to serve the app with HTTPS. My nginx.conf…
plepleple
  • 15
  • 7
0
votes
1 answer

nginx-proxy/nginx-proxy with SSL

I'm really new to all this reverse proxy stuff and I hoped I could get around learning how it works by using this quite popular docker container: https://github.com/nginx-proxy/nginx-proxy I'm trying to set up a few docker instances with the nginx…
0
votes
0 answers

Docker-Compose stack with jwilder/nginx-proxy and nginxproxy/acme-companion produces cert with wrong common name

I expect the docker-compose.yml below to create a cert with the common name dev.redacted.com, but the cn is letsencrypt-nginx-proxy-companion–and I do not understand why, as I specify the CERT_NAME in the service I'd like to bring up. Any…
0
votes
0 answers

Letsencrypt, nginx-proxy wordpress and docker issue

I needed to host multiple domains, so I followed this blog: https://www.datanovia.com/en/lessons/how-host-multiple-https-websites-on-one-server/ with the following configuration for my nginx-proxy: version: '3' services: nginx: image:…
0
votes
1 answer

I got error bind: address already in use with running Laravel app under jwilder/nginx-proxy

Trying to run docker laravel project based on jwilder/nginx-proxy I got error : bind: address already in use I tried to stop docker at first and stop apache on my hosting Kubuntu 18, but errors anyway: user@HostingOS:/ProjectPath/lml$ systemctl…
mstdmstd
  • 2,195
  • 17
  • 63
  • 140
0
votes
0 answers

Docker Jwilder nginx-proxy custom nginx configuration, proxy-wide basis by mounting in custom configuration volume

I'm testing Jwilder nginx-proxy custom nginx configuration using this command: version: "3.8" services: reverse-proxy: image: "jwilder/nginx-proxy:latest" container_name: "reverse-proxy" volumes: -…
0
votes
0 answers

Nginx proxy pass without rewrite url

location /checks/ { auth_request /auth; proxy_pass http://localhost:3000/meetings; } location = /auth { internal; set $query ''; if ($request_uri ~*…
0
votes
1 answer

Traefik with nip.io

I'm trying to expose some applications using traefik and nip.io My docker-compose file looks as the following version: '3.3' services: traefik: image: traefik:1.7-alpine command: --web --docker --docker.domain=app.test --logLevel=DEBUG …
user672009
  • 4,379
  • 8
  • 44
  • 77
0
votes
2 answers

Extend Dockerfile nginx image

I've run into an nginx limiting issue that requires me to extend config of my nginx dockerfile, I found a Dockerfile extension logic listed here but I'm having trouble getting it to work, I'm not sure what I'm supposed to use for the COPY . /app/…
Kevin Danikowski
  • 4,620
  • 6
  • 41
  • 75
0
votes
0 answers

Docker Nginx-Proxy TLS 1.2

We are currently using docker environment to run our containers. Front of containers we use Nginx-proxy (https://github.com/nginx-proxy/nginx-proxy) and https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion to automate HTTPS…
user257980
  • 1,059
  • 2
  • 15
  • 31
0
votes
1 answer

How to run phpmyadmin along with wordpress docker container using nginx-proxy?

I am trying to run a WordPress app along with phpMyAdmin each inside of a docker container on Ubuntu VPS using Nginx-Proxy. I created the following docker-compose.yml file version: '3.4' services: nginx-proxy: image: jwilder/nginx-proxy …
Jay
  • 1,168
  • 13
  • 41