I am using jwilder/nginx-proxy, i wrote a custom.conf for supporting my custom-routing.
upstream service-a {
server web:8001;
}
upstream service-b {
server jobrecommendation.web:8002;
}
server {
listen 80;
location /site-alive {
…
I have a web app reverse-proxied through jwilder/nginx-proxy, which applies my TLS certificate. There is one path served by this app that I want to either have TLS disabled, or at least optional if http:// is specified.
Using custom configuration,…
I followed this question
serving static files from jwilder/nginx-proxy
to serve static files.
This works fine with one app with static files. I want to add a second app, which means I need to have a root directory for static files per app.…
I have two docker container running, one is the jwilder nginx reverse proxy. The other one is portainer. I can access the portainer backend by adding the :9443 port to the url. But the virtual host and virtual port configured for nginx reverse proxy…
I got an Flask app in first container and NGINX on second, both hosted on the same server. On NGINX I want to have a proxy to first container, which have no ports exposed for reason that I want the NGINX to serve the app with HTTPS. My nginx.conf…
I'm really new to all this reverse proxy stuff and I hoped I could get around learning how it works by using this quite popular docker container: https://github.com/nginx-proxy/nginx-proxy
I'm trying to set up a few docker instances with the nginx…
I expect the docker-compose.yml below to create a cert with the common name dev.redacted.com, but the cn is letsencrypt-nginx-proxy-companion–and I do not understand why, as I specify the CERT_NAME in the service I'd like to bring up.
Any…
I needed to host multiple domains, so I followed this blog:
https://www.datanovia.com/en/lessons/how-host-multiple-https-websites-on-one-server/ with the following configuration for my nginx-proxy:
version: '3'
services:
nginx:
image:…
Trying to run docker laravel project based on jwilder/nginx-proxy I got error :
bind: address already in use
I tried to stop docker at first and stop apache on my hosting Kubuntu 18, but errors anyway:
user@HostingOS:/ProjectPath/lml$ systemctl…
I'm trying to expose some applications using traefik and nip.io
My docker-compose file looks as the following
version: '3.3'
services:
traefik:
image: traefik:1.7-alpine
command: --web --docker --docker.domain=app.test --logLevel=DEBUG
…
I've run into an nginx limiting issue that requires me to extend config of my nginx dockerfile, I found a Dockerfile extension logic listed here but I'm having trouble getting it to work, I'm not sure what I'm supposed to use for the COPY . /app/…
We are currently using docker environment to run our containers. Front of containers we use Nginx-proxy (https://github.com/nginx-proxy/nginx-proxy) and https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion to automate HTTPS…
I am trying to run a WordPress app along with phpMyAdmin each inside of a docker container on Ubuntu VPS using Nginx-Proxy.
I created the following docker-compose.yml file
version: '3.4'
services:
nginx-proxy:
image: jwilder/nginx-proxy
…