From 82c8d797ff7ac6769e90bb5a5eacf59f6a73b7eb Mon Sep 17 00:00:00 2001 From: 514fpv Date: Mon, 1 Apr 2024 11:00:44 +0800 Subject: [PATCH] fix(web): add home redirects --- spec/web/nginx.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/spec/web/nginx.nix b/spec/web/nginx.nix index ae1506bc..fa4cb3da 100644 --- a/spec/web/nginx.nix +++ b/spec/web/nginx.nix @@ -9,7 +9,13 @@ recommendedGzipSettings = true; recommendedProxySettings = true; - virtualHosts = { + virtualHosts = let + mkRedirect = host: { + locations."/".return = "307 https://${host}$request_uri"; + forceSSL = true; + enableACME = true; + }; + in { "_" = { rejectSSL = true; extraConfig = "return 444;"; @@ -34,6 +40,10 @@ forceSSL = true; enableACME = true; }; + + # redirections to home server + "src.514fpv.one" = mkRedirect "src.514fpv.io:2096"; + "cloud.514fpv.one" = mkRedirect "cloud.514fpv.io:2096"; }; };