3297d01f0a
To https://billandhiscomputer.com (instead of the nginx default landing page). Change-Id: Id08a3a54c0753c20370a45ff6344128f180d52dd Reviewed-on: https://cl.tvl.fyi/c/depot/+/5904 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
11 lines
221 B
Nix
11 lines
221 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.nginx.virtualHosts."wpcarro.dev" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
extraConfig = "return 302 https://billandhiscomputer.com$request_uri;";
|
|
};
|
|
};
|
|
}
|