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…
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…
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…
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…
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:
-…
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…
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…
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…
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…
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
…
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:
-…
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…
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…
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:
-…
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…