Home Explore Blog Models CI



nixpkgs

nixos/modules/services/web-apps/castopod.md
4e5799437841be926c1b3583e25d8a8556069348426bdee20000000300000322
# 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
465ea777 (1st chunk of `nixos/modules/services/web-apps/castopod.md`)
Title: Castopod: Open-Source Podcast Hosting Platform Quickstart
Summary
This chunk introduces Castopod, an open-source hosting platform for podcasters focused on audience interaction. It provides a quickstart guide for setting up a public instance using NixOS. The configuration snippet demonstrates how to enable Castopod, create a local database, configure an Nginx virtual host for a specified domain (e.g., `castopod.example.com`) with ACME and forced SSL, and open necessary firewall ports (80 and 443). Users are instructed to create a superadmin account via `https://castopod.example.com/cp-install` after applying the configuration.