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

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;";
};
};
}