fix(web): add home redirects

This commit is contained in:
514fpv 2024-04-01 11:00:44 +08:00
parent 6e2cc49183
commit 82c8d797ff
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

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