rice/hosts/ami/forgejo.nix

44 lines
894 B
Nix
Raw Normal View History

{pkgs, ...}: let
2024-03-29 20:56:26 +00:00
port = 3000;
2024-01-25 15:54:05 +00:00
in {
services = {
2024-03-29 20:56:26 +00:00
forgejo = {
2024-01-25 15:54:05 +00:00
enable = true;
package = pkgs.unstable.forgejo;
2024-03-29 20:56:26 +00:00
settings = {
DEFAULT = {
APP_NAME = "buffet's kitchen";
};
server = {
DOMAIN = "buffets.kitchen";
ROOT_URL = "https://buffets.kitchen/";
2024-03-29 20:56:26 +00:00
HTTP_PORT = port;
};
service.DISABLE_REGISTRATION = true;
cron.ENABLED = true;
federation.ENABLED = true;
2024-01-25 15:54:05 +00:00
};
};
nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
2024-03-29 20:56:26 +00:00
virtualHosts."buffets.kitchen" = {
2024-01-25 15:54:05 +00:00
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:${toString port}";
};
};
};
};
}