docker-nginx-ssl-proxy icon indicating copy to clipboard operation
docker-nginx-ssl-proxy copied to clipboard

SSL Front-End Proxy With Automatic Free Certificate Management

Results 18 docker-nginx-ssl-proxy issues
Sort by recently updated
recently updated
newest added

all my verification calls return a 404, so I started looking into the container wwwroot and I saw that the acme challenge is created under /usr/share/nginx/html/.well-known/acme-challenge/ but it is removed...

How can i conf proxy.conf for multy fomains?

Seems like not compatible with aarch64(?) Tried on Odroid C2 running Ubuntu 18.04: `Linux server 3.16.58-26 #1 SMP PREEMPT Sun Sep 30 23:40:07 -03 2018 aarch64 aarch64 aarch64 GNU/Linux` getting:...

In my container log im getting this: ``` Registering without email! Obtaining a new certificate Performing the following challenges: http-01 challenge for Using the webroot path /usr/share/nginx/html for all unmatched...

Now I need to have an ssl connection/certificate for two (sub)domains each running in a separate container on a single docker host machine. This is not possible, since port conflicts...

I was unable to get the proxy pass working with my app container until I added the service to my existing *docker-compose.yml* and specified the app service name as the...

It should be noted in the docs that the SSL issuance uses HTTP for authentication, so you'll need to have your domain pointing at the server and DNS resolved before...

The documentation should wrap that docker-compose.yml file under `services:` like so: ``` services: nginx-ssl-proxy: image: danieldent/nginx-ssl-proxy restart: always environment: UPSTREAM: 127.0.0.1:8080 SERVERNAME: test.example.com EXTRANAMES: www.test.example.com,test2.example.com ports: - "80:80" - "443:443"...