From 8db62a865e6950e518090cac04d9530c858bfb17 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sun, 6 Dec 2020 09:38:15 -0500 Subject: [PATCH] add txt extension to deployed license file --- nginx/nginx.conf | 2 +- static/{LICENSE => LICENSE.txt} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename static/{LICENSE => LICENSE.txt} (100%) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index d3733992..30b60a16 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -131,7 +131,7 @@ http { } location = /LICENSE { - default_type text/plain; + return 301 /LICENSE.txt; } location = /404 { diff --git a/static/LICENSE b/static/LICENSE.txt similarity index 100% rename from static/LICENSE rename to static/LICENSE.txt