feat: change domain

This commit is contained in:
Finn Linck Ryan 2026-01-11 17:15:36 +00:00
parent 0b185fd607
commit f037d1dd80

View file

@ -9,7 +9,7 @@
services.traefik.dynamicConfigOptions.http = {
routers.forgejo = {
rule = "Host(`git.dokkae.duckdns.org`)";
rule = "Host(`git.dokkae.com`)";
service = "forgejo";
entryPoints = [ "websecure" ];
tls = { certResolver = "letsencrypt"; };
@ -17,13 +17,16 @@
services.forgejo = {
loadBalancer.servers = [
{ url = "http://localhost:3003"; }
{ url = "http://localhost:3000"; }
];
};
};
services.forgejo = {
enable = true;
user = "forgejo";
group = "forgejo";
database = {
type = "postgres";
host = "/run/postgresql";
@ -37,13 +40,13 @@
server = {
DOMAIN = "localhost";
PROTOCOL = "http";
HTTP_PORT = 3003;
HTTP_PORT = 3000;
# Used for web-displayed URL references.
ROOT_URL = "https://git.dokkae.duckdns.org/";
ROOT_URL = "https://git.dokkae.com/";
# SSH Settings
SSH_DOMAIN = "git.dokkae.duckdns.org";
SSH_DOMAIN = "ssh.dokkae.com";
SSH_PORT = 22;
START_SSH_SERVER = false;
};
@ -64,8 +67,10 @@
mailer = {
ENABLED = true;
SMTP_ADDR = "smtp.gmail.com";
FROM = "noreply@git.dokkae.duckdns.org";
FROM = "noreply@git.dokkae.com";
USER = "finnliry@gmail.com";
PROTOCOL = "smtps";
SMTP_PORT = 465;
};
};