mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-20 22:14:14 -05:00
13 lines
316 B
Nix
13 lines
316 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
services.caddy = {
|
|
enable = true;
|
|
virtualHosts."logs.wanderingcrow.net".extraConfig = ''
|
|
reverse_proxy http://${builtins.toString config.services.grafana.settings.server.http_addr}:${builtins.toString config.services.grafana.settings.server.http_port}
|
|
'';
|
|
};
|
|
}
|