Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
1
vote
0 answers

Is it possible to exclude service access within the same Docker network?

I am using the nginx-proxy image (https://github.com/jwilder/nginx-proxy) to automatically configure nginx proxy in front of my services. The corresponding nginx-proxy container is running in the nginx-proxy network: docker network create…
John Somen
  • 223
  • 1
  • 11
1
vote
4 answers

Force ssl within a Node/Express web using AWS ECS

I have a cluster (that could have N instances in autoscaling) and I have a service with a website done in Node/Express. I have a Elastic Load Balancer which has a Target Group and the Listener points certain path to this target group. Everything…
1
vote
0 answers

Nginx proxy and Docker doesn't work with Laravel

I have one website in Laravel and one API in Node.js. I want to host the website to domain.tld and the API to api.domain.tld. First I made a Dockerfile for the Laravel project: FROM shakyshane/laravel-php:latest COPY composer.lock composer.json…
Vasileios Pallas
  • 4,801
  • 4
  • 33
  • 50
1
vote
1 answer

can't create file from nginx to docker-gen

I'm using jwilder/nginx-proxy in order to have a project in my domain.tld and one in api.domain.tld. I followed this tutorial and I'm facing a problem with my custom default.conf. First I'm running the image from my project docker container run -d…
Vasileios Pallas
  • 4,801
  • 4
  • 33
  • 50
1
vote
1 answer

Docker SSL for domain

I'm trying to run SSL for Docker using domain. I'm using the following docker-compose.yml for my project: web: build: /Users/marcin/docker/definitions/php-nginx/php-7.1-ubuntu volumes: -…
Marcin Nabiałek
  • 109,655
  • 42
  • 258
  • 291
1
vote
2 answers

Using Nextcloud inside a nginx/nxgin-proxy container togheter with other services

I'm trying to get the nextcloud:fpm docker image to run with a nginx docker image plus a neginx-proxy docker image and try to serve several services besides netxcloud (for instace sonarr, etc) from the same nginx image. In orde to do this I want to…
jbssm
  • 6,861
  • 13
  • 54
  • 81
1
vote
1 answer

Access docker containers from local network via dev suffix

I have a running container with nginx-proxy and a gitlab container with -env VIRTUAL_HOST=gitlab.dev How can I make gitlab.dev accessible from other computers in my local network? Im running CentOS7 My config: Step 1: docker run -d -p 80:80 --name…
robert
  • 797
  • 3
  • 9
  • 23
1
vote
0 answers

Running nginx as proxy for gitlab in docker

I have problems to config nginx as proxy for gitlab. I run gitlab with the following port configuration: sudo docker run --detach \ --hostname gitlab.myserver.com \ --publish 8929:80 --publish 2289:22 \ --name gitlab \ --restart…
robert
  • 797
  • 3
  • 9
  • 23
1
vote
1 answer

Docker version 1.13.1, Docker Swarm, jwilder/nginx-proxy will not start as a docker service

I'm trying to setup an Elasticsearch cluster on Docker following this guide: https://sematext.com/blog/2016/12/12/docker-elasticsearch-swarm/ But I'm consistently getting an error about /tmp/docker.sock after creating the jwilder/nginx-proxy…
eeach
  • 25
  • 1
  • 7
1
vote
1 answer

jwilder/nginx-proxy points to the nginx welcome screen

I am trying to use the nginx-proxy docker container, but if I point to my domain with no subdomain (mydomain.com) then I just get the welcome page. I am using Docker-Compose and my .yml file looks like this: proxy: image: jwilder/nginx-proxy …
Julien Vincent
  • 1,210
  • 3
  • 17
  • 40
0
votes
0 answers

nginx-proxy path based routing gives 404 error for application assets

I'm attempting to use the path based routing feature of nginx-proxy/nginx-proxy to host dozzle at http://media.local/dozzle/. version: "3" services: nginx-proxy: image: nginxproxy/nginx-proxy ports: - "80:80" volumes: -…
PaulH
  • 7,759
  • 8
  • 66
  • 143
0
votes
0 answers

CloudFlare DNS + jwilder/nginx-proxy error 500

Today I put my current domaine under the CloudFlare DNS. dns records On my server, I currently use the jWilder/reverse-proxy And for other subdomains or main domaines I use Apache2 or Nginx v1.22. Everything is used under Docker…
0
votes
1 answer

Cant setup iredmail behind existing jwilder-nginx-proxy ERR_TOO_MANY_REDIRECTS 301 Moved Permanently

This is my first time to setup iredmail. Am very happy to find this Group and really hope I will get some useful answers. Has someone here ever succeed to setup iredmail/mariadb:stable behind an existing nginx jwilder/docker-gen reverse proxy…
0
votes
0 answers

Ngnix proxy in docker compose with frontend and backend services

I can't resolve my problem with redirecting traffic to my services in one host. Here's my current Docker compose file: version: '2' services: nginx-proxy: image: nginxproxy/nginx-proxy ports: - "80:80" volumes: -…
0
votes
0 answers

Nginx proxy redirect path to docker service

I'm trying to redirect traffic from app.domain.com/test path to my backend service. I'm using jwilder/nginx-proxy and I'm trying to achive this using env VIRTUAL_PATH, but its not working properly. I have a path /api in my backend service and when…
Kusangai2
  • 3
  • 2