tvl-depot/users/wpcarro/nixos/modules/www/wpcarro.dev.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
221 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
config = {
services.nginx.virtualHosts."wpcarro.dev" = {
enableACME = true;
forceSSL = true;
extraConfig = "return 302 https://billandhiscomputer.com$request_uri;";
};
};
}