https://github.com/vufa/namesilo-letsencrypt-go
https://github.com/vufa/namesilo-letsencrypt-go
golang https letsencrypt namesilo ssl-certificate
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vufa/namesilo-letsencrypt-go
- Owner: vufa
- License: mit
- Created: 2019-10-03T07:54:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-03T08:27:10.000Z (over 5 years ago)
- Last Synced: 2025-01-12T16:11:18.525Z (5 months ago)
- Topics: golang, https, letsencrypt, namesilo, ssl-certificate
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NameSilo Let's Encrypt
Automate obtaining [Let's Encrypt](https://letsencrypt.org/) certificates,
using [Certbot](https://certbot.eff.org/) DNS-01 challenge validation for domains DNS hosted on
[NameSilo](https://www.namesilo.com/).Inspired by [namesilo-letsencrypt](https://github.com/ethauvin/namesilo-letsencrypt)
## Setup
### Build from source
Make sure you have installed [Go](https://golang.org), then
```bash
git clone https://github.com/countstarlight/namesilo-letsencrypt-go.git
cd namesilo-letsencrypt-go
make release
```## Configuration
Add your [NameSilo API key](https://www.namesilo.com/account_api.php)
to the top of the `cert_example.sh` file and set your email and domains:```bash
# Get your API Key from: https://www.namesilo.com/account_api.php
export NAMESILO_API='your namesilo api' && \
certbot certonly --manual --email [email protected] \
--agree-tos --manual-public-ip-logging-ok \
--preferred-challenges=dns \
--manual-auth-hook /path/to/auth-release \
--manual-cleanup-hook /path/to/clean-release \
-d *.example.com -d example.com
```then
```bash
sudo ./cert_example.sh
```Please note that NameSilo DNS propagation takes up to **15 minutes**,
so the tools will wait 16 minutes before completing.# License
[MIT](https://github.com/countstarlight/namesilo-letsencrypt-go/blob/master/LICENSE)
Copyright (c) 2019-present Codist