rice/hosts/ami/forgejo.nix

85 lines
2.1 KiB
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";
admin.SEND_NOTIFICATION_EMAIL_ON_NEW_USER = true;
cron.ENABLED = true;
federation.ENABLED = true;
mailer = {
2024-05-03 08:22:21 +00:00
ENABLED = true;
PROTOCOL = "sendmail";
FROM = "buffet's kitchen <do-not-reply@buffets.kitchen>";
SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail";
};
repository = {
ENABLE_PUSH_CREATE_USER = true;
ENABLE_PUSH_CREATE_ORG = true;
2024-03-29 20:56:26 +00:00
};
server = {
DOMAIN = "buffets.kitchen";
ROOT_URL = "https://buffets.kitchen/";
2024-03-29 20:56:26 +00:00
HTTP_PORT = port;
LANDING_PAGE = "/kitchen";
2024-03-29 20:56:26 +00:00
};
service = {
DISABLE_REGISTRATION = true;
ENABLE_NOTIFY_MAIL = true;
2024-05-01 13:33:06 +00:00
};
"markup.asciidoc" = {
ENABLED = true;
NEED_POSTPROCESS = true;
FILE_EXTENSIONS = ".adoc,.asciidoc";
RENDER_COMMAND = ''"${pkgs.asciidoctor}/bin/asciidoctor -e --safe-mode=secure -a showtitle --out-file=- -"'';
IS_INPUT_FILE = false;
};
"markup.restructuredtext" = {
ENABLED = true;
NEED_POSTPROCESS = true;
FILE_EXTENSIONS = ".rst";
RENDER_COMMAND = ''"timeout 30s ${pkgs.pandoc}/bin/pandoc +RTS -M512M -RTS -f rst"'';
IS_INPUT_FILE = false;
};
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" = {
useACMEHost = "buffet.sh";
2024-01-25 15:54:05 +00:00
forceSSL = true;
locations = {
"/" = {
proxyPass = "http://localhost:${toString port}";
};
"= /assets/img/logo.svg" = {
alias = ../../res/buffet_chef.png;
};
"= /assets/img/favicon.svg" = {
alias = ../../res/buffet_chef.png;
};
2024-01-25 15:54:05 +00:00
};
};
};
};
}