diff options
Diffstat (limited to 'Omni')
-rw-r--r-- | Omni/Cloud/Web.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Omni/Cloud/Web.nix b/Omni/Cloud/Web.nix index df62aa3..fe7d64f 100644 --- a/Omni/Cloud/Web.nix +++ b/Omni/Cloud/Web.nix @@ -132,7 +132,7 @@ in { }; }; - "bsima.me" = { + "bensima.com" = { locations."/" = { root = "/var/web/ben"; index = "index.html index.htm"; @@ -140,7 +140,11 @@ in { autoindex on; ''; }; - serverAliases = ["www.bsima.me"]; + serverAliases = [ + "www.bensima.com" + "www.bsima.me" + "bsima.me" + ]; forceSSL = true; useACMEHost = rootDomain; }; @@ -268,7 +272,7 @@ in { group = "nginx"; # This must contain all of the other domains we host extraDomainNames = - ["bsima.me" "www.bsima.me"] + ["bensima.com" "www.bensima.com" "bsima.me" "www.bsima.me"] ++ map (sub: "${sub}.${rootDomain}") [ "music" "tv" |