forked from DGNum/infrastructure
feat(services): deploy a partially-declarative ERP (Dolibarr) on erp.dgnum.eu
This is required for various services we will need, e.g. accounting and more.
This commit is contained in:
parent
1f67e3c310
commit
4850098fb6
2 changed files with 12 additions and 0 deletions
|
@ -19,6 +19,7 @@ lib.extra.mkConfig {
|
|||
"redirections"
|
||||
"static"
|
||||
"wordpress"
|
||||
"dolibarr"
|
||||
];
|
||||
|
||||
extraConfig = {
|
||||
|
|
11
machines/web01/dolibarr.nix
Normal file
11
machines/web01/dolibarr.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.dolibarr = {
|
||||
enable = true;
|
||||
domain = "erp.dgnum.eu";
|
||||
nginx = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue