From be70835ac3d1c74c83b92287f87ddcf085a5580a Mon Sep 17 00:00:00 2001
From: Meow <197331664+Meo597@users.noreply.github.com>
Date: Tue, 15 Apr 2025 04:33:24 +0800
Subject: [PATCH] Add Spaceship
---
dnsapi2.md | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/dnsapi2.md b/dnsapi2.md
index 4f60aac..4310c91 100644
--- a/dnsapi2.md
+++ b/dnsapi2.md
@@ -103,6 +103,7 @@
- [179. Use Area-7 DNS API](#dns_area7)
- [180. Use HestiaCP DNS API](#dns_hestiacp)
- [181. Use Netim DNS API](#dns_netim)
+- [182. Use Spaceship DNS API](#dns_spaceship)
- [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon)
@@ -2607,6 +2608,31 @@ To issue your certificate run:
```
Report bugs at https://github.com/acmesh-official/acme.sh/issues/6273
+
+
+## 182. Use Spaceship DNS API
+
+You need to generate an Spaceship API Key.
+
+API Key Setup:
+ 1. Log in to Spaceship account
+ 2. Generate your API Key
+
+Before running `acme.sh` script, you need to provide your user and secret:
+
+```sh
+export SPACESHIP_API_KEY='Spaceship API Key'
+export SPACESHIP_API_SECRET='Spaceship API Secret'
+export SPACESHIP_ROOT_DOMAIN='(Optional) Manually specify the root domain if auto-detection fails'
+```
+
+To issue your certificate run:
+
+```sh
+./acme.sh --issue --dns dns_spaceship -d example.domain.com
+```
+Report bugs at https://github.com/acmesh-official/acme.sh/issues/6304
+
## Use custom API