16 lines
232 B
Nix
16 lines
232 B
Nix
|
{
|
||
|
imports = [ ./gestiojeux.nix ];
|
||
|
|
||
|
services.django-apps = {
|
||
|
enable = true;
|
||
|
|
||
|
webhook = {
|
||
|
domain = "hooks.webapps.dgnum.eu";
|
||
|
nginx = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|