Change forgejo domain to woof.rip

This commit is contained in:
emily 2024-06-19 13:13:32 +02:00
parent 8a750c57b7
commit 4c533c6bf3
Signed by: emily
GPG key ID: F6F4C66207FCF995

View file

@ -21,7 +21,7 @@
SCHEDULE = "@every 24h"; SCHEDULE = "@every 24h";
UPDATE_EXISTING = true; UPDATE_EXISTING = true;
}; };
DEFAULT.APP_NAME = "The Gay Git"; DEFAULT.APP_NAME = "The dog girl Git";
federation.ENABLED = true; federation.ENABLED = true;
log.LEVEL = "Info"; log.LEVEL = "Info";
mailer = { mailer = {
@ -45,8 +45,8 @@
server = { server = {
STATIC_URL_PREFIX = "/static"; STATIC_URL_PREFIX = "/static";
PROTOCOL = "http+unix"; PROTOCOL = "http+unix";
DOMAIN = "git.kyouma.net"; DOMAIN = "woof.rip";
ROOT_URL = "https://git.kyouma.net"; ROOT_URL = "https://woof.rip";
}; };
security = { security = {
LOGIN_REMEMBER_DAYS = 90; LOGIN_REMEMBER_DAYS = 90;
@ -70,11 +70,11 @@
}; };
}; };
}; };
kyouma.nginx.virtualHosts."git.kyouma.net" = { kyouma.nginx.virtualHosts."woof.rip" = {
locations."/static/".alias = "${pkgs.forgejo.data}/public/"; locations."/static/".alias = "${pkgs.forgejo.data}/public/";
locations."/" = { locations."/" = {
proxyPass = "http://unix:/run/forgejo/forgejo.sock"; proxyPass = "http://unix:/run/forgejo/forgejo.sock";
}; };
}; };
security.acme.certs."git.kyouma.net" = {}; security.acme.certs."woof.rip" = {};
} }