!fixup add missing settings section
This commit is contained in:
parent
65ec0779b7
commit
db5865fff2
1 changed files with 38 additions and 37 deletions
|
@ -49,45 +49,46 @@
|
||||||
log.level = "Info";
|
log.level = "Info";
|
||||||
# mailerPasswordFile =
|
# mailerPasswordFile =
|
||||||
# "/var/lib/secrets/noreply"; # see below for access permissions
|
# "/var/lib/secrets/noreply"; # see below for access permissions
|
||||||
# settings = {
|
settings = {
|
||||||
# mailer = {
|
# mailer = {
|
||||||
# ENABLED = true;
|
# ENABLED = true;
|
||||||
# HOST = "0x0.rip:465";
|
# HOST = "0x0.rip:465";
|
||||||
# FROM = "noreply@0x0.rip";
|
# FROM = "noreply@0x0.rip";
|
||||||
# ENVELOPE_FROM = "noreply@0x0.rip";
|
# ENVELOPE_FROM = "noreply@0x0.rip";
|
||||||
# USER = "noreply@0x0.rip";
|
# USER = "noreply@0x0.rip";
|
||||||
|
|
||||||
# };
|
# };
|
||||||
repository = {
|
repository = {
|
||||||
DEFAULT_PRIVATE = "public";
|
DEFAULT_PRIVATE = "public";
|
||||||
PREFERRED_LICENSES = "Unlicense";
|
PREFERRED_LICENSES = "Unlicense";
|
||||||
DEFAULT_BRANCH = "main";
|
DEFAULT_BRANCH = "main";
|
||||||
|
};
|
||||||
|
"repository.pull-requests" = {
|
||||||
|
DEFAULT_MERGE_STYLE = "merge";
|
||||||
|
DEFAULT_MERGE_MESSAGE_ALL_AUTHORS = true;
|
||||||
|
};
|
||||||
|
"repository.upload".FILE_MAX_SIZE = 1024;
|
||||||
|
server = {
|
||||||
|
LANDING_PAGE = "explore";
|
||||||
|
OFFLINE = true;
|
||||||
|
};
|
||||||
|
security = { INSTALL_LOCK = true; };
|
||||||
|
other = {
|
||||||
|
SHOW_FOOTER_VERSION = false;
|
||||||
|
SHOW_FOOTER_TEMPLATE_LOAD_TIME = false;
|
||||||
|
};
|
||||||
|
cron = {
|
||||||
|
ENABLED = true;
|
||||||
|
NOTICE_ON_SUCCESS = true;
|
||||||
|
};
|
||||||
|
"cron.update_mirrors" = {
|
||||||
|
SCHEDULE = "@every 12h";
|
||||||
|
PULL_LIMIT = "-1";
|
||||||
|
PUSH_LIMIT = "-1";
|
||||||
|
};
|
||||||
|
"cron.git_gc_repos".ENABLED = true;
|
||||||
|
"cron.delete_old_actions".ENABLED = true;
|
||||||
};
|
};
|
||||||
"repository.pull-requests" = {
|
|
||||||
DEFAULT_MERGE_STYLE = "merge";
|
|
||||||
DEFAULT_MERGE_MESSAGE_ALL_AUTHORS = true;
|
|
||||||
};
|
|
||||||
"repository.upload".FILE_MAX_SIZE = 1024;
|
|
||||||
server = {
|
|
||||||
LANDING_PAGE = "explore";
|
|
||||||
OFFLINE = true;
|
|
||||||
};
|
|
||||||
security = { INSTALL_LOCK = true; };
|
|
||||||
other = {
|
|
||||||
SHOW_FOOTER_VERSION = false;
|
|
||||||
SHOW_FOOTER_TEMPLATE_LOAD_TIME = false;
|
|
||||||
};
|
|
||||||
cron = {
|
|
||||||
ENABLED = true;
|
|
||||||
NOTICE_ON_SUCCESS = true;
|
|
||||||
};
|
|
||||||
"cron.update_mirrors" = {
|
|
||||||
SCHEDULE = "@every 12h";
|
|
||||||
PULL_LIMIT = "-1";
|
|
||||||
PUSH_LIMIT = "-1";
|
|
||||||
};
|
|
||||||
"cron.git_gc_repos".ENABLED = true;
|
|
||||||
"cron.delete_old_actions".ENABLED = true;
|
|
||||||
};
|
};
|
||||||
services.postgresqlBackup = {
|
services.postgresqlBackup = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue