A simple command-line tool to get free SSL/TLS certificates from Let's Encrypt for your websites.
cisza means "silence" in Polish - because managing certificates should be silent and effortless.
- Port 80 must be accessible from the internet
- Root/sudo access (to bind to port 80)
- Valid DNS records pointing to your server
- Go 1.24+ (for building from source)
- Get free SSL certificates for one or multiple domains
- Check certificate expiration dates
- Renew certificates with a single command
- Support for both RSA and ECDSA keys
- Test with staging environment before going live
go install github.com/lechgu/cisza@latestOr build from source:
git clone https://github.com/lechgu/cisza.git
cd cisza
make buildcisza init --email [email protected]This creates a .cisza/ directory with your ACME account key and configuration. Use --staging flag for testing with Let's Encrypt staging environment.
sudo cisza issue --dir example.com --dns example.com --dns www.example.comThis will create a certificate directory with cert.pem and key.pem files ready to use with your web server.
cisza inspect --dir example.comShows certificate details including expiration date, DNS names, key information, and validity status.
sudo cisza renew --dir example.comReads the existing certificate, extracts DNS names, and reissues the certificate.
sudo cisza issue --dir mysite.com --dns mysite.comsudo cisza issue --dir myapp --dns app.example.com --dns api.example.com --dns www.example.comcisza init --email [email protected] --staging
sudo cisza issue --dir test-cert --dns test.example.comAdd to crontab to renew certificates monthly:
# Renew certificate on the 1st of each month at 3 AM
0 3 1 * * sudo /path/to/cisza renew --dir /path/to/certsudo cisza issue --dir example.com --dns example.com --forceThe --force flag overwrites existing certificates in the directory.
Default configuration file: .cisza/config.yaml
email: [email protected]
directory_url: https://acme-v02.api.letsencrypt.org/directory
key_type: rsa
rsa_key_size: 2048Additional configuration options are available for ECDSA curves and other settings.
BSD 3-Clause License - see LICENSE for details.
Contributions welcome! Please open an issue or submit a pull request.