17 lines
331 B
Nix
17 lines
331 B
Nix
{ pkgs, config, ... }: {
|
|
|
|
services.listmonk = {
|
|
enable = true;
|
|
database.createLocally = true;
|
|
settings.app.address = "127.0.0.1:9002";
|
|
};
|
|
|
|
services.nginx.virtualHosts."news.cebula.camp" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:9002";
|
|
};
|
|
};
|
|
}
|