summary refs log tree commit diff
path: root/nixos/modules/services/audio/castopod.md
blob: ee8590737a7c73479a31540ff27a3def9eb8ea86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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}

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.