1
1

Initial commit

This commit is contained in:
2023-04-07 11:09:21 -04:00
commit b6007b7e8f
11 changed files with 378 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
services.gitea = {
enable = true;
appName = "Bill's Gitea server, hosted on Linode using NixOS";
domain = "git.ewanick.com";
rootUrl = "https://git.ewanick.com/";
httpPort = 3000;
settings = {
service = {
DISABLE_REGISTRATION = true;
};
};
};
services.caddy = {
enable = true;
virtualHosts = {
"git.ewanick.com" = {
extraConfig = ''
reverse_proxy localhost:3000
'';
};
};
};
}