this repo has no description
31
fork

Configure Feed

Select the types of activity you want to include in your feed.

hosts/appview: don't force ssl

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>

+3 -1
+3 -1
hosts/appview/services/nginx.nix
··· 36 36 # Redirect tangled.sh → tangled.org 37 37 "tangled.sh" = { 38 38 serverAliases = [ "www.tangled.sh" ]; 39 + 39 40 locations."/" = { 40 41 return = "301 https://tangled.org$request_uri"; 41 42 }; 42 - forceSSL = true; 43 + 44 + forceSSL = false; 43 45 enableACME = true; 44 46 }; 45 47