Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
2
votes
0 answers

How to run laradock w/ nginx-proxy?

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…
shaneparsons
  • 1,489
  • 1
  • 20
  • 24
2
votes
1 answer

docker-compose + letsencrypt + nginx-proxy. Where is nginx.conf?

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: -…
2
votes
0 answers

Trying to make expo links work behind a reverse proxy

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…
Rakiah
  • 240
  • 2
  • 15
2
votes
1 answer

Rewrite URL in jwilder/nginx-proxy Docker container

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…
Redsandro
  • 11,060
  • 13
  • 76
  • 106
2
votes
1 answer

Nginx Proxy Upstream Server Docker Compose - 502 Bad Gateway Connection Refused

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…
2
votes
1 answer

Docker add php project on subdomain

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…
Vasileios Pallas
  • 4,801
  • 4
  • 33
  • 50
2
votes
2 answers

docker - jwilder/nginx-proxy, container create issue

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…
Hasan Hafiz Pasha
  • 1,402
  • 2
  • 17
  • 25
2
votes
0 answers

Multiple services with different ports and the same domain using jwilder/nginx-proxy

I have some services in docker-compose: version: "3" services: site: volumes: - .:/app build: dockerfile: Dockerfile.dev context: docker ports: - "80:80" webpack: image: node:6.12.0 ports: -…
2
votes
3 answers

Docker-compose and nginx proxy

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…
DKMudrechenko
  • 725
  • 11
  • 23
2
votes
0 answers

Several docker stacks with the same compose file but different ports

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…
2
votes
1 answer

CA marked some of the authorizations as invalid

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: …
ekkis
  • 9,804
  • 13
  • 55
  • 105
2
votes
1 answer

nginx try_files rewrite if exists proxy if doesn't

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…
Mike Furlender
  • 3,869
  • 5
  • 47
  • 75
2
votes
1 answer

Docker jwilder/nginx-proxy location configuration

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/)…
Gnana
  • 2,130
  • 5
  • 26
  • 57
1
vote
1 answer

SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream nginx-proxy

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…
PirateApp
  • 5,433
  • 4
  • 57
  • 90
1
vote
0 answers

OAUTH2 Proxy dont check session validity in each request

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