Disable router log in gitea
Some checks failed
Check flake / build-amd64-linux (push) Has been cancelled

This commit is contained in:
2024-05-22 07:10:13 +01:00
parent b1e7f1d74b
commit d8464519ba

View File

@ -65,7 +65,6 @@ in {
settings = {
server = {
DOMAIN = config.networking.domain;
DISABLE_ROUTER_LOG = true;
LANDING_PAGE = "explore";
OFFLINE_MODE = true;
PROTOCOL = "http+unix";
@ -76,7 +75,10 @@ in {
};
service.DISABLE_REGISTRATION = true;
session.COOKIE_SECURE = true;
log.ROOT_PATH = "${stateDir}/log";
log = {
ROOT_PATH = "${stateDir}/log";
DISABLE_ROUTER_LOG = true;
};
ui = {
THEMES = "gitea,arc-green,github,github-auto,github-dark";
DEFAULT_THEME = "github-dark";