This commit is contained in:
zuckerberg 2021-06-14 21:18:59 -04:00
parent 9d655c1229
commit 3a91b44d85

View File

@ -20,15 +20,25 @@
device.path = "/dev/disk/by-uuid/2f736fba-8a0c-4fb5-8041-c849fb5e1297"; device.path = "/dev/disk/by-uuid/2f736fba-8a0c-4fb5-8041-c849fb5e1297";
}; };
networking.hostName = "liza";
networking.interfaces.enp1s0.useDHCP = true;
services.gitea = { services.gitea = {
enable = true; enable = true;
hostname = "git.neet.dev"; hostname = "git.neet.dev";
disableRegistration = true; disableRegistration = true;
}; };
networking.hostName = "liza"; services.searx.enable = true;
services.searx.settings.server.port = 8080;
networking.interfaces.enp1s0.useDHCP = true; services.nginx.virtualHosts."search.neet.space" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:${toString config.services.searx.settings.server.port}";
};
};
security.acme.acceptTerms = true; security.acme.acceptTerms = true;
security.acme.email = "zuckerberg@neet.dev"; security.acme.email = "zuckerberg@neet.dev";