Fix public DNS configuration
All checks were successful
/ docker-build-push (push) Successful in 28s

This commit is contained in:
Melora Hugues 2024-09-08 17:24:18 +02:00
parent 0b411ff4ee
commit 8d2ac77b31
2 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,7 @@
--- ---
title: "How to do HTTPS at home (when your infrastructure is private)" title: "How to do HTTPS at home (when your infrastructure is private)"
date: 2024-09-08T15:18:00+02:00 date: 2024-09-08T15:18:00+02:00
lastmod: 2024-09-08T17:20:00+02:00
draft: false draft: false
toc: true toc: true
images: images:
@ -637,7 +638,6 @@ internal.example.com IN SOA ns.internal.example.com. admin.example.com. (
$ORIGIN internal.example.com. $ORIGIN internal.example.com.
ns A 1.2.3.4 ns A 1.2.3.4
test A 192.168.1.2
``` ```
### Testing the configuration ### Testing the configuration
@ -683,3 +683,7 @@ an infrastructure.
I would argue that a setup of this type is very adapted to homelabs or small businesses I would argue that a setup of this type is very adapted to homelabs or small businesses
that have a private infrastructure, but don't want to go through the trouble of setuping that have a private infrastructure, but don't want to go through the trouble of setuping
an entire PKI (Private Key Infrastructure). an entire PKI (Private Key Infrastructure).
## Edits
- 2024-09-08: Fixed [public DNS configuration](#public-dns-server)

View file

@ -1,6 +1,7 @@
--- ---
title: "Comment faire du HTTPS chez soi (quand son infrastructure est privée)" title: "Comment faire du HTTPS chez soi (quand son infrastructure est privée)"
date: 2024-09-08T15:18:00+02:00 date: 2024-09-08T15:18:00+02:00
lastmod: 2024-09-08T17:20:00+02:00
draft: false draft: false
toc: true toc: true
images: images:
@ -664,7 +665,6 @@ internal.example.com IN SOA ns.internal.example.com. admin.example.com. (
$ORIGIN internal.example.com. $ORIGIN internal.example.com.
ns A 1.2.3.4 ns A 1.2.3.4
test A 192.168.1.2
``` ```
### Tester la configuration ### Tester la configuration
@ -711,3 +711,7 @@ notre infrastructure.
Je considère que ce type de setup est particulièrement adapté à un homelab, ou a un business Je considère que ce type de setup est particulièrement adapté à un homelab, ou a un business
de petite taille possédant une infrastructure privée, mais ne souhaitant pas s'infliger de petite taille possédant une infrastructure privée, mais ne souhaitant pas s'infliger
la création d'une infrastructure PKI (Infrastructure de Clé Privée) complète. la création d'une infrastructure PKI (Infrastructure de Clé Privée) complète.
## Corrections
- 2024-09-08: Correction de la [configuration DNS publique](#serveur-dns-public)