I have the following configuration for firefly III, which I want to run in my local tailscale network
sops.secrets.firefly-key = {
owner = "firefly-iii";
};
services.firefly-iii = {
enable = true;
virtualHost = "0.0.0.0";
settings = {
APP_KEY_FILE = config.sops.secrets.firefly-key.path;
DB_CONNECTION = "sqlite";
DB_DATABASE = "firefly";
DB_HOST = "localhost";
DB_USERNAME = "firefly-iii";
APP_URL = "0.0.0.0";
TZ = "Europe/Zurich";
TRUSTED_PROXIES = "**";
};
};
When I look at all services, they look like they are running without any problems, but I don’t find the service in my network (I also have no idea what the default port is).
How could I change my config to have a simple service for my use case?