about summary refs log tree commit diff
path: root/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
blob: 62c1ed308c89592bc99d62b6884d55f0263afd62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

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