spanskiblog/content/posts/certs.md

18 lines
348 B
Markdown
Raw Normal View History

2022-12-24 17:42:40 +01:00
2022-12-24 17:09:22 +01:00
+++
2023-02-27 21:59:02 +01:00
date="2023-02-03"
2022-12-24 17:09:22 +01:00
author="spanskiduh"
title="certs"
2022-12-24 17:42:40 +01:00
description="click to read about certs"
2022-12-24 17:09:22 +01:00
+++
# CERTS
2022-12-24 22:54:34 +01:00
## Generate self-signed certificate
[creds](https://stackoverflow.com/questions/66604487/how-do-i-generate-fullchain-pem-and-privkey-pem)
```bash
openssl genrsa > privkey.pem
openssl req -new -x509 -key privkey.pem > fullchain.pem
```