Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
certbot-dnspod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
certbot-dnspod
Commits
0cb2e597
Commit
0cb2e597
authored
Sep 13, 2018
by
tengattack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README
parent
b9377420
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
43 deletions
+45
-43
README.md
README.md
+45
-0
README.rst
README.rst
+0
-43
No files found.
README.md
0 → 100644
View file @
0cb2e597
# DNSPod DNS Authenticator plugin for Certbot
A certbot dns plugin to obtain certificates using dnspod.
## Obtain API Token
[
https://www.dnspod.cn/console/user/security
](
https://www.dnspod.cn/console/user/security
)
## Install
```
bash
git clone https://github.com/tengattack/certbot-dns-dnspod
cd
certbot-dns-dnspod
sudo
python setup.py
install
```
If you are using
`certbot-auto`
, you should run
`virtualenv`
first:
```
bash
# CentOS 7
virtualenv
--no-site-packages
--python
"python2.7"
"/opt/eff.org/certbot/venv"
/opt/eff.org/certbot/venv/bin/python2.7 setup.py
install
```
## Credentials File
```
ini
certbot_dns_dnspod:
dns_dnspod_api_id
=
12345
certbot_dns_dnspod:
dns_dnspod_api_token
=
1234567890abcdef1234567890abcdef
```
```
bash
chmod
600 /path/to/credentials.ini
```
## Obtain Certificates
```
bash
certbot certonly
-a
certbot-dns-dnspod:dns-dnspod
\
--certbot-dns-dnspod
:dns-dnspod-credentials /path/to/credentials.ini
\
-d
example.com
\
-d
"*.example.com"
```
README.rst
deleted
100644 → 0
View file @
b9377420
DNSPod DNS Authenticator plugin for Certbot
-------------------------------------------
A certbot dns plugin to obtain certificates using dnspod.
Obtain API Token
================
https://www.dnspod.cn/console/user/security
Install
=======
.. code-block:: bash
git clone https://github.com/tengattack/certbot-dns-dnspod
cd certbot-dns-dnspod
sudo python setup.py install
Credentials File
================
.. code-block:: ini
certbot_dns_dnspod:dns_dnspod_api_id = 12345
certbot_dns_dnspod:dns_dnspod_api_token = 1234567890abcdef1234567890abcdef
.. code-block:: bash
chmod 600 /path/to/credentials.ini
Obtain Certificates
===================
.. code-block:: bash
certbot certonly -a certbot-dns-dnspod:dns-dnspod \
--certbot-dns-dnspod:dns-dnspod-credentials /path/to/credentials.ini \
-d example.com \
-d "*.example.com"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment