summaryrefslogtreecommitdiff
path: root/hosts/saklas
diff options
context:
space:
mode:
authorvin <vin@vineetk.net>2025-03-03 19:54:56 -0500
committervin <vin@vineetk.net>2025-03-03 19:54:56 -0500
commit5f5006198491e42fc3a81c7647d1a648a5f1932e (patch)
tree021ca0a6a420c5ec51a3e07ecd269827142961bc /hosts/saklas
parentc83b940c15f2d2a2ed6b44d23b4332182ec41ff1 (diff)
demiurge: switch back to using self-signed cert instead of step-ca
step-ca was being a massive pain when I switched the domain from demiurge.vpn to demiurge.epistemia. After a long time of trying to see why it couldn't connect, it later switched to rejectedIdentifier and I had no idea how to fix it. (one of the github issues on it had maintainer saying they're closing due to being unable to reproduce)
Diffstat (limited to 'hosts/saklas')
-rw-r--r--hosts/saklas/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/hosts/saklas/default.nix b/hosts/saklas/default.nix
index 2c1a2b8..e8a79f6 100644
--- a/hosts/saklas/default.nix
+++ b/hosts/saklas/default.nix
@@ -155,7 +155,15 @@
155 port = 8080; 155 port = 8080;
156 settings = { 156 settings = {
157 server_url = "https://headscale.13f0.net"; 157 server_url = "https://headscale.13f0.net";
158 dns.base_domain = "epistemia"; 158 dns = {
159 base_domain = "epistemia";
160 extra_records = [
161 { name = "navidrome.demiurge.epistemia"; type = "A"; value = "100.64.0.5"; }
162 { name = "redlib.demiurge.epistemia"; type = "A"; value = "100.64.0.5"; }
163 { name = "sdui.demiurge.epistemia"; type = "A"; value = "100.64.0.5"; }
164 { name = "searx.demiurge.epistemia"; type = "A"; value = "100.64.0.5"; }
165 ];
166 };
159 logtail.enabled = false; 167 logtail.enabled = false;
160 }; 168 };
161 }; 169 };