feat: SSL/TLS certificate management with Let's Encrypt (#512)#644
Open
Julianemeka wants to merge 1 commit into
Open
feat: SSL/TLS certificate management with Let's Encrypt (#512)#644Julianemeka wants to merge 1 commit into
Julianemeka wants to merge 1 commit into
Conversation
- infra/ssl/nginx.conf: TLS 1.2/1.3, OCSP stapling, security headers (HSTS preload, X-Frame-Options DENY, CSP, X-Content-Type-Options) - infra/ssl/docker-compose.ssl.yml: nginx+certbot overlay for any compose stack - scripts/ssl-setup.sh: initial cert generation, multi-domain SAN support, staging flag for testing - scripts/ssl-renew.sh: zero-downtime renewal via webroot challenge + nginx reload deploy-hook - scripts/ssl-monitor.sh: expiry check, configurable WARN_DAYS threshold, exits 1 for alerting integration - docs/ssl-setup.md: setup guide, multi-domain usage, cron renewal, monitoring Closes Vera3289#512
|
@Julianemeka Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #512
Changes
infra/ssl/nginx.confinfra/ssl/docker-compose.ssl.ymlDocker Compose overlay — stacks on top of any compose file:
api:3000scripts/ssl-setup.shInitial certificate generation. Supports staging flag and multi-domain SAN:
scripts/ssl-renew.shZero-downtime renewal via webroot challenge +
nginx -s reloaddeploy-hook. Use with cron.scripts/ssl-monitor.shExpiry monitoring — exits 1 when cert expires within
WARN_DAYS(default 14). Wire into PagerDuty/Slack.docs/ssl-setup.mdFull setup guide: quick start, multi-domain, auto-renewal, monitoring, environment variables.
Acceptance Criteria