mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
552043a34d
- new maxUploadSize option - new dataDir option (with ReadWritePaths systemd support) - admin page reports correct free disk space (instead of /nix/store) - fix example configuration in documentation - now podcast creation and file upload are tested during NixOS test - move castopod from audio to web-apps folder - verbose logging from the browser test
26 lines
790 B
Markdown
26 lines
790 B
Markdown
# 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.
|