meta: remove caddy / docker (again)

I no longer use docker and caddy on this machine due to having a
preference for using flat files over self-hosted web applications,
especially when I am the sole user of said services.

In general, using the file system offers much more flexibility since it
makes backups easier and we can manipulate any of our data with standard
unix tools.
This commit is contained in:
Donovan Glover 2025-03-22 19:02:58 -04:00
parent 5fe60eb3ee
commit 9d0e092282
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 30 deletions

View File

@ -1,20 +0,0 @@
{
services.caddy = {
enable = true;
virtualHosts = {
"https://" = {
logFormat = "output file /var/log/caddy/access.log";
extraConfig = # Caddyfile
''
reverse_proxy :3000
tls internal {
on_demand
}
'';
};
};
};
}

View File

@ -1,10 +0,0 @@
{
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
}