2023-10-09 19:29:22 +00:00
|
|
|
# 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}
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
Configure ACME (https://nixos.org/manual/nixos/unstable/#module-security-acme).
|
2023-10-09 19:29:22 +00:00
|
|
|
Use the following configuration to start a public instance of Castopod on `castopod.example.com` domain:
|
|
|
|
|
|
|
|
```nix
|
2024-04-21 15:54:59 +00:00
|
|
|
{
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
|
|
services.castopod = {
|
|
|
|
enable = true;
|
|
|
|
database.createLocally = true;
|
|
|
|
nginx.virtualHost = {
|
|
|
|
serverName = "castopod.example.com";
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
};
|
2023-10-09 19:29:22 +00:00
|
|
|
};
|
2024-04-21 15:54:59 +00:00
|
|
|
}
|
2023-10-09 19:29:22 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Go to `https://castopod.example.com/cp-install` to create superadmin account after applying the above configuration.
|