Home Explore Blog CI



nixpkgs

nixos/modules/services/web-apps/castopod.md
24ddbb471dc450a967589bb30b2b102670ef951fcd9d608e0000000300000316
# 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.

Chunks
ca74802c (1st chunk of `nixos/modules/services/web-apps/castopod.md`)
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.