All Projects → kaienkira → Acme Client Quick

kaienkira / Acme Client Quick

get let's encrypt cert in five minutes

Projects that are alternatives of or similar to Acme Client Quick

Ansible Role Certbot
Ansible Role - Certbot (for Let's Encrypt)
Stars: ✭ 477 (+61.69%)
Mutual labels:  https, letsencrypt, certificate
Certificaat
General-purpose ACME client
Stars: ✭ 88 (-70.17%)
Mutual labels:  https, letsencrypt, certificate
Acme client
Java ACME Client application
Stars: ✭ 77 (-73.9%)
Mutual labels:  https, letsencrypt, certificate
letsencrypt-www
Probably the easiest way to create | renew | deploy certificate
Stars: ✭ 27 (-90.85%)
Mutual labels:  letsencrypt, certificate, https
django-yadpt-starter
Yet Another Django Project Template skeleton for Django projects
Stars: ✭ 28 (-90.51%)
Mutual labels:  letsencrypt, certificate, https
Docker Nginx Gunicorn Flask Letsencrypt
Boilerplate code for setting up Nginx + Gunicorn + Flask + automated LetsEncrypt certificates (https) using docker-compose.
Stars: ✭ 117 (-60.34%)
Mutual labels:  https, letsencrypt, certificate
Crypt Le
Crypt::LE - Let's Encrypt / Buypass / ACME client and library in Perl for obtaining free SSL certificates (inc. generating RSA/ECC keys and CSRs). HTTP/DNS verification is supported out of the box, easily extended with plugins, easily dockerized.
Stars: ✭ 277 (-6.1%)
Mutual labels:  https, certificate
letsencrypt-autorenew-docker
letsencrypt certificate generation and cron enabled autorenewal as a docker image
Stars: ✭ 59 (-80%)
Mutual labels:  letsencrypt, certificate
django-template
The ultimate Django template: production ready Django 3.2 with Docker, HTTPS and CI/CD using Github actions ‎️‍🔥
Stars: ✭ 20 (-93.22%)
Mutual labels:  letsencrypt, https
website-checks
check your website for issues with multiple tools and get PDF reports of the results
Stars: ✭ 69 (-76.61%)
Mutual labels:  certificate, https
LetsEncrypt
C# layer for generation of wildcard Let's Encrypt SSL certificates
Stars: ✭ 67 (-77.29%)
Mutual labels:  letsencrypt, certificate
docker-nginx-certbot
Automatically create and renew website certificates for free using the Let's Encrypt certificate authority.
Stars: ✭ 367 (+24.41%)
Mutual labels:  letsencrypt, https
concerto
A command line tool and a library to generate TLS certificates for development purposes.
Stars: ✭ 34 (-88.47%)
Mutual labels:  certificate, https
wat
WAT - Windows ACME Tool
Stars: ✭ 28 (-90.51%)
Mutual labels:  letsencrypt, certificate
acme2
Another PHP client for acme protocal (version 2) implementation, used for generating letsencrypt's free ssl certificates.
Stars: ✭ 45 (-84.75%)
Mutual labels:  letsencrypt, certificate
sslcontext-kickstart
🔐 A lightweight high level library for configuring a http client or server based on SSLContext or other properties such as TrustManager, KeyManager or Trusted Certificates to communicate over SSL TLS for one way authentication or two way authentication provided by the SSLFactory. Support for Java, Scala and Kotlin based clients with examples. Av…
Stars: ✭ 295 (+0%)
Mutual labels:  certificate, https
3dub
www dev server with livereload, file watching, http2, https, self signed cert generation
Stars: ✭ 28 (-90.51%)
Mutual labels:  certificate, https
cert-manager-alidns-webhook
Cert-manager webhook to generate Let's Encrypt certificates over Alibaba Cloud DNS.
Stars: ✭ 31 (-89.49%)
Mutual labels:  letsencrypt, certificate
ght-acme.sh
Shell script to sign certificate by the letsencrypt CA
Stars: ✭ 31 (-89.49%)
Mutual labels:  letsencrypt, certificate
letsencrypt-inwx
A small cli utility for automating the letsencrypt dns-01 challenge for domains hosted by inwx.
Stars: ✭ 43 (-85.42%)
Mutual labels:  letsencrypt, certificate

acme-client-quick (Deprecated)

Get Let's Encrypt Cert In Five Minutes (Deprecated)

Steps

get dependency

# Ubuntu
sudo apt-get install php-cli php-curl nginx

# CentOS
yum install php-cli php-curl nginx

put your domain name in domain.txt

cd acme-client-quick
echo "example.com" >> domain.txt
echo "www.example.com" >> domain.txt

get cert

# need root because http-01 challenge need listen 80 port
# make sure your system 80 port is free
# maybe you need run
# sudo service nginx stop first
sudo ./quick-start.sh

result file

cd cert

# ssl.key -- your domain private key
# ssl.crt -- your domain cert

# nginx config
# ...
# ssl_certificate /path/to/ssl.crt;
# ssl_certificate_key /path/to/ssl.key;
# ...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].