nixos-config/config/services/gitea.nix

83 lines
2.3 KiB
Nix
Raw Normal View History

2022-01-17 09:53:15 +00:00
{ config, ... }: {
2022-01-17 10:27:07 +00:00
imports = [
2022-01-17 11:00:18 +00:00
/run/secrets/services/gitea.nix
2022-01-17 10:27:07 +00:00
];
2022-01-17 09:49:37 +00:00
services.gitea = {
enable = true;
appName = "Lotte's Git";
2022-01-17 09:53:15 +00:00
cookieSecure = true;
2022-01-17 09:49:37 +00:00
database = {
host = "localhost";
name = "gitea";
user = "gitea";
2022-01-17 10:36:05 +00:00
type = "postgres";
2022-01-17 09:49:37 +00:00
};
domain = "git.chir.rs";
dump.enable = true;
httpAddress = "127.0.0.1";
lfs.enable = true;
rootUrl = "https://git.chir.rs/";
2022-01-17 10:37:34 +00:00
settings = rec {
2022-01-17 09:49:37 +00:00
lfs = {
2022-01-17 10:36:05 +00:00
STORAGE_TYPE = "default";
2022-01-17 09:49:37 +00:00
};
storage = {
STORAGE_TYPE = "minio";
2022-01-17 10:05:02 +00:00
MINIO_ENDPOINT = "minio.int.chir.rs:443";
2022-01-17 10:27:07 +00:00
MINIO_ACCESS_KEY_ID = "gitea";
2022-01-17 09:49:37 +00:00
MINIO_BUCKET = "gitea";
MINIO_USE_SSL = "true";
};
2022-01-17 12:48:48 +00:00
openid = {
ENABLE_OPENID_SIGNIN = true;
ENABLE_OPENID_SIGNUP = true;
};
cache = {
2022-01-17 12:50:25 +00:00
ENABLED = config.services.redis.servers.gitea.enable;
2022-01-17 12:48:48 +00:00
ADAPTER = "redis";
2022-01-17 12:51:14 +00:00
HOST = "redis://${config.services.redis.servers.gitea.bind}:${toString config.services.redis.servers.gitea.port}/0";
2022-01-17 12:48:48 +00:00
};
session = {
PROVIDER = "redis";
PROVIDER_CONFIG = "redis://${config.services.redis.servers.gitea.bind}:${toString config.services.redis.servers.gitea.port}/1";
};
metrics = {
ENABLED = true;
ENABLED_ISSUE_BY_LABEL = true;
ENABLED_ISSUE_BY_REPOSITORY = true;
};
queue = {
TYPE = "redis";
CONN_STRING = "redis://${config.services.redis.servers.gitea.bind}:${toString config.services.redis.servers.gitea.port}/2";
};
2022-01-17 10:37:34 +00:00
"storage.default" = storage;
2022-01-17 09:49:37 +00:00
};
};
2022-01-17 09:53:15 +00:00
services.nginx.virtualHosts."git.chir.rs" = {
forceSSL = true;
http2 = true;
listenAddresses = [ "0.0.0.0" "[::]" ];
sslCertificate = "/var/lib/acme/chir.rs/cert.pem";
sslCertificateKey = "/var/lib/acme/chir.rs/key.pem";
locations."/" = {
proxyPass = "http://${config.services.gitea.httpAddress}:${toString config.services.gitea.httpPort}/";
proxyWebsockets = true;
};
};
2022-01-17 09:49:37 +00:00
services.postgresql.ensureDatabases = [ "gitea" ];
services.postgresql.ensureUsers = [{
name = "gitea";
ensurePermissions = { "DATABASE gitea" = "ALL PRIVILEGES"; };
}];
2022-01-17 12:50:25 +00:00
services.redis.servers.gitea = {
2022-01-17 12:48:48 +00:00
enable = true;
bind = "127.0.0.1";
databases = 3;
2022-01-23 09:55:17 +00:00
port = 6379;
2022-01-17 12:48:48 +00:00
};
sops.secrets."services/gitea.nix" = { };
2022-01-17 09:49:37 +00:00
}