gogs: fiddle around with logs and gitea

This commit is contained in:
Ingolf Wagner 2020-04-03 16:52:53 +02:00
parent cc673bfef4
commit 69adf97b3a
Signed by: palo
GPG key ID: 76BF5F1928B9618B

View file

@ -4,8 +4,7 @@
enable = true;
statusPage = true;
virtualHosts = {
"gogs.${config.networking.hostName}.private" = {
serverAliases = [ "git.${config.networking.hostName}.private" ];
"git.${config.networking.hostName}.private" = {
locations."/" = {
proxyPass = "http://${config.networking.hostName}.private:${
toString config.services.gogs.httpPort
@ -33,12 +32,43 @@
START_SSH_SERVER = true
SSH_LISTEN_PORT = 2222
[log]
; Either "Trace", "Info", "Warn", "Error", "Fatal", default is "Trace"
[log.file]
LEVEL = Warn
[log.console]
LEVEL = Warn
[log.sublogger.macaron]
LEVEL = Warn
'';
};
backup.all.restic.dirs = [ config.services.gogs.repositoryRoot ];
#services.gitea = {
# enable = true;
# appName = "Git";
# domain = "git.ingolf-wagner.de";
# httpPort = 3000;
# repositoryRoot = "/home/gitea/repositories";
# stateDir = "/home/gitea";
# rootUrl = "https://git.ingolf-wagner.de/";
# extraConfig = ''
# [service]
# DISABLE_REGISTRATION = true
# SHOW_REGISTRATION_BUTTON = false
# [server]
# SSH_DOMAIN = "git.ingolf-wagner.de"
# SSH_PORT = 443
# START_SSH_SERVER = true
# SSH_LISTEN_PORT = 2222
# [log]
# LEVEL = Warn
# [log.sublogger.macaron]
# LEVEL = Warn
# '';
#};
#backup.all.restic.dirs = [ config.services.gitea.repositoryRoot ];
}