🏗️ migrate to akkoma

This commit is contained in:
2023-03-18 23:40:44 -04:00
parent 07130a5a41
commit 0e31565644
8 changed files with 185 additions and 63 deletions

16
modules/akkoma/nginx.nix Normal file
View File

@@ -0,0 +1,16 @@
_:
{
services.nginx = {
enable = true;
virtualHosts = {
"walkah.social" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:4000";
proxyWebsockets = true;
};
};
};
};
}