diff --git a/TaskTackler/wwwroot/appsettings.json b/TaskTackler/wwwroot/appsettings.json index 17af12f..80e2f88 100644 --- a/TaskTackler/wwwroot/appsettings.json +++ b/TaskTackler/wwwroot/appsettings.json @@ -6,5 +6,5 @@ } }, "AllowedHosts": "*", - "ApiUrl": "https://localhost:7213/api/" + "ApiUrl": "http://localhost:8080/api/" } diff --git a/nginx.conf b/nginx.conf index 505db77..844b493 100644 --- a/nginx.conf +++ b/nginx.conf @@ -2,6 +2,11 @@ events {} http { include mime.types; + gzip on; + gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; + gzip_proxied any; + gzip_vary on; + server { listen 80; server_name localhost;