Files
Anthony Wang 42b3aa1357 lemmy: update documentation
settings.database.createLocally was changed to just database.createLocally and there's now an option to enable nginx for Lemmy
2026-06-15 22:53:48 -04:00

859 B

Lemmy

Lemmy is a federated alternative to Reddit in Rust.

Quickstart

The minimum to start Lemmy is

{
  services.lemmy = {
    enable = true;
    settings.hostname = "lemmy.union.rocks";
    database.createLocally = true;
    caddy.enable = true;
  };
}

This will start the backend on port 8536 and the frontend on port 1234. It will expose your instance with a Caddy reverse proxy to the hostname you've provided. Postgres will be initialized on that same instance automatically.

Usage

On first connection you will be asked to define an admin user.

Missing

  • This has been tested using a local database with a Unix socket connection. Using different database settings will likely require modifications.