depot/third_party/nixpkgs/nixos/modules/services/audio/castopod.md
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

686 B

Castopod

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

Quickstart

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.