infrastructure/hosts/cesium/services/atuin/default.nix

18 lines
326 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{...}: {
2023-04-23 18:13:39 +00:00
services.atuin = {
enable = true;
openRegistration = false;
maxHistoryLength = 1000000000;
};
services.nginx = {
virtualHosts = {
"atuin.fainsin.bzh" = {
forceSSL = true;
enableACME = true;
2023-12-15 15:18:36 +00:00
locations."/".proxyPass = "http://127.0.0.1:8888";
2023-04-23 18:13:39 +00:00
};
};
};
}