While following the tutorial from here: https://blog.ssdnodes.com/blog/tutorial-extending-docker-nginx-host-multiple-websites-ssl/
nginx-proxy repo: https://github.com/jwilder/nginx-proxy
I have a trouble understanding how to properly setup…
I'm using jwilder/nginx-proxy with separate docker-compose.yaml. It looks like this:
proxy:
image: jwilder/nginx-proxy
restart: always
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
-…
I'm trying to build multiwebsite docker server.
I want to have one container for proxy and others for websites.
Also I want to use fastcgi due to better performance.
I'm using jwilder/nginx-proxy
PROBLEM: setting fastcgi (- VIRTUAL_PROTO=fastcgi)…
Trying to use docker phpmyadmin to connect several different mysql's both local (containers) and remote servers. All works fine till I start to log in - connecting to remote server works like a charm, problem is to connect local server's…
i have setup a docker server where i have 4 docker containers 3 have wordpress and the other has contao .. how ever all the wordpress docker-compose.yml files have different domains as always. however when i enter the other domains in the browser…
I need to use a nginx reverse proxy. Therefore I use jwilder/nginx-proxy.
Also I'm using gitLab as a docker container.
So I came up with this docker-compose file, but accessing ci.server.com gives me a502 Bad Gateway` error.
I need some help to…
There are 3 docker containers that need to be restarted automatically whenever the server reboot.
We can start the containers using restart policies, such as
sudo docker run --restart=always -d your_image
but because one container is linked to…
I was running a complete CI stack on some local servers that I try to migrate to Rancher.
First, I have created the following configuration on one node with
docker-compose that seems to runs perfectly (i.e., I can access to
each elements separately…
We have Node.js applications sending logs to a URL which points to my Nginx Reverse Proxy server.
I have the nginx reverse proxy server setup in a docker container and then have a set of containers for Fluentd, ElasticSearch and Kibana which are…
Below is my docker-compose.yml file.
I am trying to set reverse proxy.
I tried setting VIRTUAL_HOST and VIRTUAL_PORT Environment to virtual docker containers. it is accessible using Host name and port like http://services.local:81
Please suggest how…
I am trying to use Prerender with phantom.js locally on port 3000 with nginx.
I know if I proxy the requests through the webserver, all relative URLs should work correctly, but I am not able to access to some of the files in /assets/* only when I…
TL;DR
why this wordpress:latest Dockerfile is ok with nginx-proxy but this one not wordpress:fpm Dockerfile ? And how can I use a wordpress:fpm image with nginx-proxy
Hi,
I successfully use nginx-proxy with some wordpress container. for…
I am currently developping a toolchain for my company in which I've used Docker to set Gitlab and Jenkins.
I use the jwilder/nginx-proxy to access to them with a domain name from the outside.
My problem is that when I try to configure Jenkins to…
I have elasticsearch instance running in my linux server on xxx.xxx.1.75: 9201.
I have installed and configured NGINX on another server xxx.xx.1.89 and set the proxy for the elasticsearch to be running on port 5001i.e., it is able to access from…
Can't manage to access my website using docker-compose, nginx-proxy and letsencrypt... I was following this tutorial: https://github.com/fatk/docker-letsencrypt-nginx-proxy-companion-examples
Here is my config (of course example.com is not the value…