26 lines
373 B
Markdown
26 lines
373 B
Markdown
---
|
|
title: Certificate
|
|
description:
|
|
published: true
|
|
date: 2025-09-28T16:18:31.664Z
|
|
tags:
|
|
editor: markdown
|
|
dateCreated: 2025-09-28T15:55:26.949Z
|
|
---
|
|
|
|
# Certificate
|
|
|
|
Add a domain through Let's Encrypt
|
|
```
|
|
sudo certbot --nginx -d wiki.duckdns.org
|
|
```
|
|
|
|
Setup renewal timer
|
|
```
|
|
sudo systemctl enable --now certbot.timer
|
|
```
|
|
|
|
Renew manualy
|
|
```
|
|
sudo certbot renew --dry-run
|
|
``` |