depot/third_party/nixpkgs/nixos/modules/services/web-apps/castopod.md
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

790 B

Castopod

Castopod is an open-source hosting platform made for podcasters who want to engage and interact with their audience.

Quickstart

Configure ACME (https://nixos.org/manual/nixos/unstable/#module-security-acme). Use the following configuration to start a public instance of Castopod on castopod.example.com domain:

{
  networking.firewall.allowedTCPPorts = [ 80 443 ];
  services.castopod = {
    enable = true;
    database.createLocally = true;
    nginx.virtualHost = {
      serverName = "castopod.example.com";
      enableACME = true;
      forceSSL = true;
    };
  };
}

Go to https://castopod.example.com/cp-install to create superadmin account after applying the above configuration.