vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / web-apps / hatsu.md
blobe2c61d00f121e9b11b1e42ba1dd3a57fab16b61e
1 # Hatsu {#module-services-hatsu}
3 [Hatsu](https://github.com/importantimport/hatsu) is an fully-automated ActivityPub bridge for static sites.
5 ## Quickstart {#module-services-hatsu-quickstart}
7 the minimum configuration to start hatsu server would look like this:
9 ```nix
11   services.hatsu = {
12     enable = true;
13     settings = {
14       HATSU_DOMAIN = "hatsu.local";
15       HATSU_PRIMARY_ACCOUNT = "example.com";
16     };
17   };
19 ```
21 this will start the hatsu server on port 3939 and save the database in `/var/lib/hatsu/hatsu.sqlite3`.
23 Please refer to the [Hatsu Documentation](https://hatsu.cli.rs) for additional configuration options.