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