forked from DGNum/infrastructure
23 lines
327 B
Nix
23 lines
327 B
Nix
|
{ 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";
|
||
|
APP_LOCALE = "fr-FR";
|
||
|
};
|
||
|
};
|
||
|
}
|