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…
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…
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…
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"
-…
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…
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…
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…
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…
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…
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
…
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…
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…
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
-…
**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…
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…