1
1
Fork 0

Setup ERP software

main
Bill Ewanick 2024-01-25 09:26:56 -05:00
parent 597ac21390
commit 5a627ca0e3
2 changed files with 15 additions and 0 deletions

View File

@ -11,6 +11,8 @@
./fancytypist.com.nix
./hydra.fancyTypist.com.nix
./erp.fancyTypist.dev.nix
];
# when in doubt, clear away the certs with

View File

@ -0,0 +1,13 @@
{
services.dolibarr = {
enable = true;
domain = "erp.fancyTypist.dev";
database.passwordFile = "/run/keys/dolibarr-db-ini-password";
nginx = {
forceSSL = true;
enableACME = true;
};
};
networking.firewall.allowedTCPPorts = [ 80 ];
}