Initial commit

This commit is contained in:
Inex Code
2021-11-15 13:02:05 +03:00
commit 85aaf52635
28 changed files with 1360 additions and 0 deletions

13
webserver/memcached.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
services = {
memcached = {
enable = true;
user = "memcached";
listen = "127.0.0.1";
port = 11211;
maxMemory = 64;
maxConnections = 1024;
};
};
}