mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
14 lines
319 B
Nix
14 lines
319 B
Nix
{
|
|
services.gitea = {
|
|
enable = true;
|
|
disableRegistration = true;
|
|
rootUrl = "https://code.kmein.de";
|
|
appName = "code.kmein.de";
|
|
};
|
|
services.nginx.virtualHosts."code.kmein.de" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/".extraConfig = "proxy_pass http://localhost:3000;";
|
|
};
|
|
}
|