docker-nginx-auto-ssl
docker-nginx-auto-ssl copied to clipboard
Docker image for automatic generation of SSL certs using Let's encrypt and Open Resty
This is an example from README: ``` version: '2' services: nginx: image: valian/docker-nginx-auto-ssl restart: on-failure ports: - 80:80 - 443:443 volumes: - ssl_data:/etc/resty-auto-ssl environment: ALLOWED_DOMAINS: 'yourdomain.com' SITES: 'yourdomain.com=myapp:80' # your...
Instead of using the latest tag (bad practice), use a specific versioned tag instead. This lets us know exactly which version of openresty is being used.
This is a great solution. I will be using it all over the place. Any chance of adding brotli support?
Hi, I want to up redis and docker-nginx-auto-ssl with docker-compose and connect them to work together. I tried to use this configuration: ``` version: '3' services: redis: container_name: redis image:...
What do you think about enabling HSTS as the default?
I add docker-compose.yml as follows. And then I run "docker-compose up -d" command. But Firefox Browser can connect to https://localhost and can't connect to https://autossl.com/ # docker-compose.yml version: '2' services:...
Hello, thank you for your work on this project! I find it by far the simplest way to manage my web servers. I wondered if it would be possible to...
Thank you for this nice project. I've setup a custom `.conf` file to forward port 35997 over SSL to a back end server here is the `docker-compose.yml` file: ``` version:...
Hi guys! Has anyone faced this error yet? I ran this command: > docker run -d \ > --name nginx-auto-ssl \ > --restart on-failure \ > -p 80:80 \ >...