Questions tagged [jwilder-nginx-proxy]

Questions related to the jwilder/nginx-proxy docker image

The jwilder/nginx-proxy docker image

186 questions
0
votes
0 answers

Nominatim docker-compose behind jwilders's nginx-proxy

I'm trying to setup a Nominatim instance as docker-compose stack (https://github.com/mediagis/nominatim-docker/blob/master/4.2/contrib/docker-compose.yml) behind a nginx reverse proxy provided by jwilder…
JNB
  • 31
  • 6
0
votes
0 answers

multiple instances of same app behind reverse proxy

I have a basic docker-compose stack that runs multiple containers behind a reverse proxy (nginx, runs as container in same stack). I need to run a second instance of one of those containers in the stack, so I cloned it and gave the clone container a…
0
votes
0 answers

Path-based routing problem docker/nginx-proxy

I'm attempting to use "Path-based routing" on an nginx-proxy docker-compose project. The goal is to have container "va-web" handle HTTP requests to "http://varitest.com/" and container "va-web-apps" handle requests to "http://varitest.com/app" Using…
Baker
  • 24,730
  • 11
  • 100
  • 106
0
votes
0 answers

Docker compose configuration of jwilder nginx crashes

I copied a standard docker-compose yaml file and tried to launch it. However, I keep getting crashes. Docker-compose.yml version: '3' services: nginx-proxy: image: nginx container_name: nginx-proxy ports: - "80:80" -…
GitGud
  • 11
  • 1
0
votes
0 answers

How to make Seafile container work with nginx-proxy container in separate docker-compose files?

I'm trying to deploy a Seafile service in my home server using docker-compose and have its secure connection managed by a nginx-proxy service by another docker-compose file. In theory if I comment out the ports section in the Seafile docker-compose…
0
votes
0 answers

Is it posible to use jwilder/nginx-proxy in port 80 for docker apps and local apache in port 81 for undockerized apps?

I've already deployed on my server the jwilder/nginx-proxy and some apps running with docker, and it's working with no problems. Now, I want to deploy some apps that don't have docker using the apache web server installed in my ubuntu server. I've…
0
votes
1 answer

Run 3 websites on one domain using nginx

Lets say i have domain abc.com which redirects my server ip 1.2.3.4 i have 3 websites running on my server using docker container, 1st website ip 1.2.3.4:50/a 2nd website ip 1.2.3.4:60/b 3rd website ip 1.2.3.4:70/c i can access this all websites…
0
votes
0 answers

nginx-proxy-manager on docker 503 error on ipv6

I have docker and docker-compose installed on a VM with ubuntu22.04 where I run a container for nginx-proxy-manager with ipv6 working. I can add Proxy Host with an ipv4 and works fine, but if I add a proxy host with an ipv6. it doesn't work and only…
0
votes
0 answers

Failure when using wss:// connection with laravel-websocket package behind nginx proxy

I am using dockerized environment for laravel project. Everything is glued by nginx proxy. There is additional docker container to run laravel-websockets server. It works when I try to connect to it using postman. It connects, I cand send message to…
0
votes
0 answers

nginx proxy manager on oracle cloud 502 Bad Gateway

So I have ubuntu with docker-compose instance on oracle cloud container nginx proxy manager version: "3" services: app: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' # Public HTTP Port …
0
votes
1 answer

How do I set up a container without a subdomain using nginx-proxy?

I have several services running in Docker containers, all behind an an Nginx reverse proxy (using nginx-proxy/nginx-proxy). All of the services run on different subdomains, and they are all working correctly with HTTPS etc. I am now trying to host…
0
votes
0 answers

Docker + nginx-proxy error 502. what's wrong with my compose file?

I'm trying to run an application behind jwilder/nginx-proxy. I have other websites up and working with nginx-proxy, but i'm having issues with this one: If i ran it with the application up i got a 502 error If i stop the application I got…
emboole
  • 501
  • 6
  • 23
0
votes
0 answers

How to force nginx-proxy to use specific network?

I use nginx-proxy with companion to generate SSL certs for my services. One of my service has couple networks: yopass: restart: always image: jhaals/yopass environment: - VIRTUAL_HOST=example.com -…
Eugen Konkov
  • 22,193
  • 17
  • 108
  • 158
0
votes
0 answers

Two nginx servers: proxy_pass for ssl from server №2 is Possible?

**Servers:** **1. Nginx server (Global ip 111.111.111.1111, get all connections. Have local IP (192.168.0.1)) 2. Nginx Proxy Manager(Docker container, Have ONLY local IP(192.168.0.2))** **№1 SERVER **hawe worked (HTTP) record in nginx: `server…
0
votes
0 answers

jwilder nginx proxy custom https port redirects to http instead of https

I am using jwilder nginx proxy container with custom HTTPS port and unable to figure out why the reverse proxy redirects to http instead of https. I have to enter the URL twice with https to load the page or else it keeps on redirecting to http. On…