We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There's a very neat alternative to letsencrypt CLI - https://github.com/auto-ssl/lua-resty-auto-ssl#lua-resty-auto-ssl. It's OpenResty (nginx with lua support) module generating and renewing certificates on-the-fly, as they're requested. I've created a pretty popular docker image making it very easy to use https://github.com/Valian/docker-nginx-auto-ssl
# docker-compose.yml version: '3' services: # your application, listening on port specified in `SITES` env variable myapp: image: nginx 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' volumes: ssl_data:
No crontab, no hassle, it just works. Can be integrated directly into nginx serving media / static files.
The text was updated successfully, but these errors were encountered:
Looks nice. Can it auto-handle self-signed certs for localhost? I read that Caddy can https://caddyserver.com/docs/automatic-https
Sorry, something went wrong.
No branches or pull requests
There's a very neat alternative to letsencrypt CLI - https://github.com/auto-ssl/lua-resty-auto-ssl#lua-resty-auto-ssl. It's OpenResty (nginx with lua support) module generating and renewing certificates on-the-fly, as they're requested. I've created a pretty popular docker image making it very easy to use https://github.com/Valian/docker-nginx-auto-ssl
No crontab, no hassle, it just works. Can be integrated directly into nginx serving media / static files.
The text was updated successfully, but these errors were encountered: