gogs: fiddle around with logs and gitea
This commit is contained in:
parent
cc673bfef4
commit
69adf97b3a
1 changed files with 35 additions and 5 deletions
|
@ -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 ];
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue