1# Castopod {#module-services-castopod}
2
3Castopod is an open-source hosting platform made for podcasters who want to engage and interact with their audience.
4
5## Quickstart {#module-services-castopod-quickstart}
6
7Use the following configuration to start a public instance of Castopod on `castopod.example.com` domain:
8
9```nix
10networking.firewall.allowedTCPPorts = [ 80 443 ];
11services.castopod = {
12 enable = true;
13 database.createLocally = true;
14 nginx.virtualHost = {
15 serverName = "castopod.example.com";
16 enableACME = true;
17 forceSSL = true;
18 };
19};
20```
21
22Go to `https://castopod.example.com/cp-install` to create superadmin account after applying the above configuration.