41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ config, pkgs, ... }:
|
|
let
|
|
host = "podcasts.dgnum.eu";
|
|
in
|
|
{
|
|
imports = [ ./castopod-head-proxy.nix ];
|
|
|
|
services = {
|
|
castopod = {
|
|
enable = true;
|
|
localDomain = host;
|
|
environmentFile = config.age.secrets.castopod-environment_file.path;
|
|
maxUploadSize = 512;
|
|
settings = {
|
|
"email.fromEmail" = "noreply@infra.dgnum.eu";
|
|
"email.SMTPHost" = "kurisu.lahfa.xyz";
|
|
"email.SMTPUser" = "web-services@infra.dgnum.eu";
|
|
"email.SMTPPort" = "587";
|
|
|
|
"media.fileManager" = "s3";
|
|
"media.s3.endpoint" = "https://s3.dgnum.eu/";
|
|
"media.s3.region" = "garage";
|
|
"media.s3.bucket" = "castopod-dgnum";
|
|
"media.s3.pathStyleEndpoint" = true;
|
|
|
|
"restapi.enabled" = true;
|
|
"restapi.basicAuthUsername" = "castopod";
|
|
"restapi.basicAuth" = true;
|
|
};
|
|
database.createLocally = true;
|
|
configureNginx = true;
|
|
};
|
|
|
|
mysql.package = pkgs.mariadb;
|
|
|
|
nginx.virtualHosts.${host} = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
};
|
|
};
|
|
}
|