summaryrefslogtreecommitdiff
path: root/infra/README.md
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-04-06 09:40:30 +0200
committerMartin Fischer <martin@push-f.com>2025-04-13 23:18:01 +0200
commit281d0a867bc542bef52d5091fed3bf1b0d3b9ef6 (patch)
treedff4cb69b1560655257b44190a17f99ed5b5f62b /infra/README.md
parent50ea018252ce69542eab6a107b99ea8179810d1e (diff)
build: introduce Nix package and NixOS service
Diffstat (limited to 'infra/README.md')
-rw-r--r--infra/README.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/infra/README.md b/infra/README.md
deleted file mode 100644
index 5b76059..0000000
--- a/infra/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# Infrastructure
-
-Let's encrypt only supports up to 100 domains
-per certificate so the country TLDs are split up
-into three files:
-
-* ccTLDs1
-* ccTLDs2
-* ccTLDs3
-
-```
-sudo certbot -d lex.surf
-sudo certbot --cert-name cc1.lex.surf $(for tld in `cat ccTLDs1`; do echo -d $tld.lex.surf; done)
-sudo certbot --cert-name cc2.lex.surf $(for tld in `cat ccTLDs2`; do echo -d $tld.lex.surf; done)
-sudo certbot --cert-name cc3.lex.surf $(for tld in `cat ccTLDs3`; do echo -d $tld.lex.surf; done)
-```
-
-Generate NGINX `server_name` rules with:
-
-```
-printf '%s' $(for tld in `cat ccTLDs2`; do echo "$tld|"; done)
-```
-
-`/var/www/lex.surf` must be a symlink pointing to this repository.