41 lines
No EOL
1 KiB
Nix
41 lines
No EOL
1 KiB
Nix
{ config, pkgs, lib, enableSSL, ... }:
|
|
|
|
let
|
|
host = "git.elnu.com";
|
|
port = 3000;
|
|
in {
|
|
services.forgejo = {
|
|
package = pkgs.forgejo; # Don't use LTS
|
|
enable = true;
|
|
stateDir = "/mnt/data/forgejo";
|
|
settings = {
|
|
server = {
|
|
HTTP_PORT = port;
|
|
DOMAIN = host;
|
|
SSH_DOMAIN = host;
|
|
# security keys will get messed up if this isn't set exactly
|
|
# will default to http://git.elnu.com:3000/ otherwise
|
|
ROOT_URL = "https://${host}/";
|
|
# make gravatar etc work
|
|
OFFLINE_MODE = false;
|
|
};
|
|
service = {
|
|
DISABLE_REGISTRATION = true;
|
|
};
|
|
security = {
|
|
DISABLE_GIT_HOOKS = false;
|
|
};
|
|
git = {
|
|
# https://github.com/go-gitea/gitea/issues/10103#issuecomment-622222129
|
|
GC_ARGS = "--aggressive --auto";
|
|
};
|
|
};
|
|
};
|
|
services.nginx.virtualHosts."${host}" = {
|
|
forceSSL = enableSSL;
|
|
enableACME = enableSSL;
|
|
locations = {
|
|
"/".proxyPass = "http://localhost:${builtins.toString port}";
|
|
};
|
|
};
|
|
} |