infrastructure/machines/compute01/stirling-pdf.nix

23 lines
338 B
Nix
Raw Normal View History

{ nixpkgs, ... }:
{
services.stirling-pdf = {
enable = true;
package = nixpkgs.unstable.stirling-pdf;
domain = "pdf.dgnum.eu";
port = 8084;
nginx = {
enableACME = true;
forceSSL = true;
};
environment = {
UI_APP_NAME = "DGNum PDF";
SYSTEM_DEFAULT_LOCALE = "fr-FR";
};
};
}