From 59c1e5a396dfe67d3fb69fb54f4178d8eb54b4cc Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Wed, 7 Aug 2024 06:31:36 +0200 Subject: [PATCH] Update SVR.JS to 3.15.6 --- source/changelog.md | 5 +++++ source/docs.md | 2 ++ source/index.md | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/source/changelog.md b/source/changelog.md index 1ddd0fe..e243760 100644 --- a/source/changelog.md +++ b/source/changelog.md @@ -4,6 +4,11 @@ excerpt: Learn more about changes introduced in various SVR.JS versions. date: 2023-12-21 17:10:14 --- +## SVR.JS 3.15.6 +_Released in August 7, 2024_ +* Added new config.json property - optOutOfStatisticsServer. +* Implemented sending data to the statistics server, so that SVR.JS can measure the popularity of the web server. + ## SVR.JS 3.14.17 LTS _Released in June 13, 2024_ * Lifted PBKDF2 restrictions on Bun 1.1.13 and later. diff --git a/source/docs.md b/source/docs.md index 49240a3..7721ab3 100644 --- a/source/docs.md +++ b/source/docs.md @@ -438,6 +438,8 @@ The _config.json_ file contains various properties that you can customize to con * Envrionment variables. These can be used for CGI web applications and server-side JavaScript. * _allowDoubleSlashes_ (Boolean, SVR.JS 3.14.4 or newer) * Option to allow double slashes in the URL. If set to `false`, double slashes are removed by URL sanitizer. Double slashes at the beginning of path (e.g. in _//config.json_) are always removed. Doesn't affect URL rewriting, in that case please configure the _allowDoubleSlashes_ property in the URL rewriting rule. It may allow some configuration file leaks, if web root is in the SVR.JS installation directory. +* _optOutOfStatisticsServer_ (Boolean, SVR.JS 3.15.6 or newer) + * Option to opt out of sending data to the statistics server. You can use this option to increase the privacy of SVR.JS. #### Deprecated and Removed Properties diff --git a/source/index.md b/source/index.md index dc18508..3a011ad 100644 --- a/source/index.md +++ b/source/index.md @@ -3,7 +3,7 @@ title: Main page date: 2024-01-21 19:41:01 layout: index-page sitemap: false -svrjsversion: 3.15.5 +svrjsversion: 3.15.6 ---
@@ -13,7 +13,7 @@ svrjsversion: 3.15.5

Host a webpage, run server-side JavaScript, use mods to expand server functionality, or use it as a forward or reverse proxy — all in SVR.JS! SVR.JS is a web server that runs on top of Node.JS, thus enabling server-side JavaScript on webpages. SVR.JS also has an integrated log viewer, log highlighter, and user management tool. SVR.JS can run not only on Node.JS but also in Bun (experimental support).