vps-arm-2024-11-24-22-26-57

This commit is contained in:
Alexander Szczepanski
2024-11-24 22:26:57 +01:00
parent 4b8e9eb89f
commit 72ade09d30
2 changed files with 27 additions and 0 deletions

25
services/atuin.nix Normal file
View File

@ -0,0 +1,25 @@
{
config,
lib,
pkgs,
...
}: {
services = {
nginx = {
virtualHosts = {
"atuin.szczepan.ski" = {
forceSSL = true;
enableACME = true;
locations = {
"/" = {proxyPass = "http://127.0.0.1:8888/";};
};
};
};
};
atuin = {
enable = true;
openRegistration = true;
};
};
}