19 lines
264 B
Nix
19 lines
264 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [../nginx.nix];
|
|
|
|
services.nginx = {
|
|
virtualHosts = {
|
|
"blog.cyplo.net" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
globalRedirect = "blog.cyplo.dev";
|
|
};
|
|
};
|
|
};
|
|
}
|