mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
* Nginx to caddy (#5) Convert all nginx instances to caddy instances, setup acme as well * matrix implemented
14 lines
235 B
Nix
14 lines
235 B
Nix
{
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
services.caddy = {
|
|
enable = true;
|
|
virtualHosts."wanderingcrow.net".extraConfig = ''
|
|
root ${inputs.the-nest.outputs.packages.x86_64-linux.default}
|
|
file_server
|
|
'';
|
|
};
|
|
}
|