📦 add gitea

This commit is contained in:
2021-10-13 21:11:36 -04:00
parent 66d78f6d68
commit beeb532c6c
4 changed files with 65 additions and 0 deletions

17
modules/gitea/nginx.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"walkah.dev" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://plato:8003";
proxyWebsockets = true;
};
};
};
};
}