server/gitea: enable federation, etc
This commit is contained in:
parent
4e840ce3b3
commit
8948db4dac
|
@ -228,14 +228,22 @@ in {
|
||||||
type = "postgres";
|
type = "postgres";
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
|
federation.ENABLED = true;
|
||||||
|
git.timeout = {
|
||||||
|
DEFAULT = 6000;
|
||||||
|
MIGRATE = 6000;
|
||||||
|
MIRROR = 6000;
|
||||||
|
GC = 120;
|
||||||
|
};
|
||||||
mailer = {
|
mailer = {
|
||||||
ENABLED = true;
|
ENABLED = true;
|
||||||
FROM = "Forgejo <noreply@${cfg.domainName}>";
|
FROM = "Forgejo <noreply@${cfg.domainName}>";
|
||||||
MAILER_TYPE = "smtp";
|
PROTOCOL = "smtp";
|
||||||
HOST = "mail.${cfg.domainName}:587";
|
SMTP_ADDR = "mail.${cfg.domainName}";
|
||||||
|
SMTP_PORT = 587;
|
||||||
USER = "noreply@${cfg.domainName}";
|
USER = "noreply@${cfg.domainName}";
|
||||||
PASSWD = cfg.unhashedNoreplyPassword;
|
PASSWD = cfg.unhashedNoreplyPassword;
|
||||||
SKIP_VERIFY = true;
|
FORCE_TRUST_SERVER_CERT = true;
|
||||||
};
|
};
|
||||||
session = {
|
session = {
|
||||||
COOKIE_SECURE = true;
|
COOKIE_SECURE = true;
|
||||||
|
|
Loading…
Reference in a new issue