I've created an nginx-proxy/ letsencrypt environment by following this tutorial, which is working great.
I now want to create a laradock environment that leverages the nginx-proxy environment, so that it's sites can live alongside my other (non…
I'm using this library, and it works as expected. I just want to add an attribute client_max_body_size 50M to Nginx, but where to add it in the docker-compose file:
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
ports:
-…
I'm trying to make expo development pipeline work behind a reverse proxy, my setup for reverse proxying seems to work:
curl http://packager.desk1.code.example.com yield me
React Native packager is running.
however, when hitting manifest server, I…
I'm containerizing some websites. I would like to be able to migrate some rewrite rules to automatically append or remove www from the domain name in the request.
How/Where in the jwilder/nginx-proxy Docker container nginx.tmpl or otherwise can I…
I am trying to containerize all things related to my web app using Docker Compose, including Nginx & SSL Certificates. To do this I am using the Nginx Proxy image from JWilder and the LetsEncrypt Companion, but am having trouble getting the nginx…
I have two projects. An API in Node.js and a web application in PHP.
I'm using jwilder/nginx-proxy and I want to add the API on api.example.com and the application on vault.example.com. On example.com I will have some static HTML pages.
The…
After updating dockeron Version 18.03.0-ce-win59 (16762), jwilder/nginx-proxy doesn't running.
i'm currently working on WINDOWS 10 and DOCKER VERSION:18.03.0-ce-win59 (16762).
And Here is my docker Compose file.
version: "3.1"
services:
#docker…
I am trying to use jwilder/nginx-proxy as a reverse proxy for my angular2 app that is broken down into 3 containers (angular, express and database).
I have tried different configurations to proxy requests to my app on port 80, however when I try to…
I would like to run several instances of a multi-container application at the same time using the same compose file. One of the containers in the application accepts websockets on a certain port.
I have an nginx proxy to forward different domains or…
I have followed the directions for the recommended method of separating containers issued here: https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion by creating a docker-compose.yml file as follows:
version: '3'
services:
…
I am using an nginx docker container (https://github.com/jwilder/nginx-proxy) to proxy requests to instances of apache running in other docker containers. Each subdomain gets its own apache docker container. One of these subdomains (sub1) requires…
I have 3 ( app-client,app-a, app-b )applications are running in jetty server and one NGINX load balancer ( app-lb). All (internal or external) requests are coming to my application through load balancer. Based on web context ( /app-a/ or /app-b/)…
I am trying to setup my docker compose node.js express application that uses redis postgres and nginx-proxy to manage certificates
I am using the test or staging version of letsencrypt currently on my subdomains and
It keeps giving me this…
I am configuring an ouath2 proxy container in docker. I am using the bitnami image:
https://hub.docker.com/r/bitnami/oauth2-proxy
For the oauth2 server I am using fusionauth.
https://fusionauth.io/
The expected behaviour from my side is the proxy…