forked from DGNum/infrastructure
12 lines
224 B
Nix
12 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;
|
|
};
|
|
}
|