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"; }; };