MyNixOS website logo
option

services.librenms.nginx

With this option, you can customize the nginx virtualHost settings.

Declarations
Type
submodule
Default
{ }
Example
{
  serverAliases = [
    "librenms.${config.networking.domain}"
  ];
  # To enable encryption and let let's encrypt take care of certificate
  forceSSL = true;
  enableACME = true;
  # To set the LibreNMS virtualHost as the default virtualHost;
  default = true;
}