forked from DGNum/infrastructure
13 lines
224 B
Nix
13 lines
224 B
Nix
|
_:
|
||
|
|
||
|
let host = "lavoixduntexte.normalesup.eu";
|
||
|
|
||
|
in {
|
||
|
services.wordpress.sites.${host} = { database.tablePrefix = "wp_lvdt_"; };
|
||
|
|
||
|
services.nginx.virtualHosts.${host} = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
};
|
||
|
}
|