blob: 62c1ed308c89592bc99d62b6884d55f0263afd62 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
config = {
services.nginx.virtualHosts."wpcarro.dev" = {
enableACME = true;
forceSSL = true;
extraConfig = "return 302 https://billandhiscomputer.com$request_uri;";
};
};
}
|