hosts/plover: update Gitea configuration

This commit is contained in:
Gabriel Arazas 2023-05-02 12:34:24 +08:00
parent 8bef44769e
commit b9e05dd1fa
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -17,8 +17,6 @@ in
type = "postgres"; type = "postgres";
passwordFile = config.sops.secrets."plover/gitea/db/password".path; passwordFile = config.sops.secrets."plover/gitea/db/password".path;
}; };
domain = codeForgeDomain;
rootUrl = "https://${codeForgeDomain}";
# Allow Gitea to take a dump. # Allow Gitea to take a dump.
dump = { dump = {
@ -27,7 +25,6 @@ in
}; };
# There are a lot of services in port 3000 so we'll change it. # There are a lot of services in port 3000 so we'll change it.
httpPort = 8432;
lfs.enable = true; lfs.enable = true;
mailerPasswordFile = config.sops.secrets."plover/gitea/smtp/password".path; mailerPasswordFile = config.sops.secrets."plover/gitea/smtp/password".path;
@ -35,6 +32,12 @@ in
# You can see the available configuration options at # You can see the available configuration options at
# https://docs.gitea.io/en-us/config-cheat-sheet/. # https://docs.gitea.io/en-us/config-cheat-sheet/.
settings = { settings = {
server = {
ROOT_URL = "https://${codeForgeDomain}";
HTTP_PORT = 8432;
DOMAIN = codeForgeDomain;
};
"repository.pull_request" = { "repository.pull_request" = {
WORK_IN_PROGRESS_PREFIXES = "WIP:,[WIP],DRAFT,[DRAFT]"; WORK_IN_PROGRESS_PREFIXES = "WIP:,[WIP],DRAFT,[DRAFT]";
ADD_CO_COMMITTERS_TRAILERS = true; ADD_CO_COMMITTERS_TRAILERS = true;
@ -160,7 +163,7 @@ in
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations."/" = { locations."/" = {
proxyPass = "http://localhost:${toString config.services.gitea.httpPort}"; proxyPass = "http://localhost:${toString config.services.gitea.settings.server.HTTP_PORT}";
}; };
}; };