This commit is contained in:
2025-06-28 17:29:05 +03:00
parent 2de66a1b49
commit 0e4d975dc2
39 changed files with 37 additions and 24 deletions
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
+34
View File
@@ -0,0 +1,34 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
services = {
nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
virtualHosts = {
"localhost:2283" = {
forceSSL = false;
enableACME = false;
listen = [
{
addr = "100.64.0.0";
port = 10000;
}
{
addr = "192.168.1.18";
port = 10000;
}
];
};
};
};
};
}