vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / modules / services / web-apps / honk.md
blobf34085f7dc52dc8d027c0a52cf32dc41cc6a55d7
1 # Honk {#module-services-honk}
3 With Honk on NixOS you can quickly configure a complete ActivityPub server with
4 minimal setup and support costs.
6 ## Basic usage {#module-services-honk-basic-usage}
8 A minimal configuration looks like this:
10 ```nix
12   services.honk = {
13     enable = true;
14     host = "0.0.0.0";
15     port = 8080;
16     username = "username";
17     passwordFile = "/etc/honk/password.txt";
18     servername = "honk.example.com";
19   };
21   networking.firewall.allowedTCPPorts = [ 8080 ];
23 ```