From ee2e1409dfdb84c1f22b967233277b627d5ff223 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sun, 20 Mar 2022 20:24:35 +0000 Subject: [PATCH] --- devdocs/todo.txt | 6 +++++- .../ayanova/docs/ops-install-linux-server.md | 20 +++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/devdocs/todo.txt b/devdocs/todo.txt index 948e9c6d..478800a8 100644 --- a/devdocs/todo.txt +++ b/devdocs/todo.txt @@ -53,8 +53,12 @@ trial / seeder system - Regression tests completed and ready to use *before* release so we can add issues to it as they come up and test reliably - Rockfish licensing finished up + todo: revoke is weird to do, have to make a license to revoke it and generate and send + what should happen instead is that we should just be able to click on a license in the existing list of licenses for that customer and press a revoke button, get an are you sure prompt then it should save it but *NOT* email any warning to the customer (it may not email now anyway a revoke need to check) lots to do there but enough for trial and sales for now in existing is enough one license redundant route also should be baked into initial release even if it points to same place for now + + - Biz decisions Share it product pages for v8 so can be purchased pricing @@ -382,7 +386,7 @@ console.log(parseFloat(localeParseFloat("1,100.9"))); // user's locale console.log(parseFloat(localeParseFloat("1,100.9", "us"))); // US locale console.log(parseFloat(localeParseFloat("1,100.9", "nl"))); // Dutch locale: reversed meaning of separators - +todo 4: to look into, chartjs is big apparently this works and is smaller: https://github.com/leeoniya/uPlot/ ## SERVER MISC ITEMS diff --git a/docs/8.0/ayanova/docs/ops-install-linux-server.md b/docs/8.0/ayanova/docs/ops-install-linux-server.md index 7c34a3a1..1a234dfe 100644 --- a/docs/8.0/ayanova/docs/ops-install-linux-server.md +++ b/docs/8.0/ayanova/docs/ops-install-linux-server.md @@ -384,6 +384,13 @@ server { add_header X-Content-Type-Options "nosniff" always; add_header X-Frame-Options "SAMEORIGIN" always; add_header Referrer-Policy "strict-origin" always; + gzip on; + gzip_vary on; + gzip_min_length 10240; + gzip_proxied expired no-cache no-store private auth; + gzip_http_version 1.1; + gzip_types application/javascript text/css application/json text/plain; + proxy_pass http://127.0.0.1:7575; proxy_http_version 1.1; @@ -445,6 +452,12 @@ server { add_header X-Content-Type-Options "nosniff" always; add_header X-Frame-Options "SAMEORIGIN" always; add_header Referrer-Policy "strict-origin" always; + gzip on; + gzip_vary on; + gzip_min_length 10240; + gzip_proxied expired no-cache no-store private auth; + gzip_http_version 1.1; + gzip_types application/javascript text/css application/json text/plain; proxy_pass http://127.0.0.1:7575; proxy_http_version 1.1; @@ -536,6 +549,13 @@ server { add_header X-Content-Type-Options "nosniff" always; add_header X-Frame-Options "SAMEORIGIN" always; add_header Referrer-Policy "strict-origin" always; + gzip on; + gzip_vary on; + gzip_min_length 10240; + gzip_proxied expired no-cache no-store private auth; + gzip_http_version 1.1; + gzip_types application/javascript text/css application/json text/plain; + proxy_pass http://127.0.0.1:7575; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;