chore: maintain

This commit is contained in:
danny 2026-01-20 13:41:53 +08:00
parent 2378a66114
commit 25482857d4
58 changed files with 1095 additions and 747 deletions

View file

@ -1,8 +1,10 @@
{ lib, config, ... }:
let
inherit (config.networking) domain;
cfg = config.services.forgejo;
srv = cfg.settings.server;
domain = "git.dnywe.com";
hostname = "git.${domain}";
mailServer = "mx1.net.dn";
forgejoOwner = {
@ -39,7 +41,7 @@ in
settings = {
server = {
DOMAIN = domain;
DOMAIN = hostname;
ROOT_URL = "https://${srv.DOMAIN}";
HTTP_PORT = 32006;
SSH_PORT = lib.head config.services.openssh.ports;
@ -69,4 +71,10 @@ in
server.SECRET_KEY = config.sops.secrets."forgejo/server/secretKey".path;
};
};
services.nginx.virtualHosts.${hostname} = {
useACMEHost = domain;
forceSSL = true;
locations."/".proxyPass = "http://127.0.0.1:${toString srv.HTTP_PORT}";
};
}