Home Explore Blog CI



nixpkgs

1st chunk of `nixos/modules/services/web-apps/castopod.md`
ca74802cb6bb6e513db2554472ee3d73d9562ca9967f65a60000000100000316
# Castopod {#module-services-castopod}

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

## Quickstart {#module-services-castopod-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:

```nix
{
  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.

Title: Castopod: Open-Source Podcast Hosting Platform
Summary
Castopod is an open-source podcast hosting platform focused on audience engagement. To quickly start a public Castopod instance, configure ACME and use the provided NixOS configuration example, replacing 'castopod.example.com' with your desired domain. After applying the configuration, visit `https://castopod.example.com/cp-install` to create a superadmin account.