1
0
Fork 0
forked from svrjs/svrjs

Update to SVR.JS 3.14.3

This commit is contained in:
Dorian Niemiec 2024-02-11 21:37:26 +01:00
parent 9c49df9d87
commit 3d411c3be1
6 changed files with 13 additions and 13 deletions

View file

@ -46,7 +46,7 @@
"/.*\\.jpg$/",
"/.*\\.webp$/"
],
"enableIPSpoofing": true,
"enableIPSpoofing": false,
"secure": false,
"sni": {},
"disableNonEncryptedServer": false,

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>SVR.JS 3.14.2</title>
<title>SVR.JS 3.14.3</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<style>
@ -12,7 +12,7 @@
</style>
</head>
<body>
<h1>Welcome to SVR.JS 3.14.2</h1>
<h1>Welcome to SVR.JS 3.14.3</h1>
<br/>
<img src="/logo.png" style="width: 256px;" />
<br/>
@ -68,7 +68,7 @@
&nbsp;&nbsp;&nbsp;&nbsp;"/.*\\.jpg$/",<br/>
&nbsp;&nbsp;&nbsp;&nbsp;"/.*\\.webp$/"<br/>
&nbsp;&nbsp;],<br/>
&nbsp;&nbsp;"enableIPSpoofing": true,<br/>
&nbsp;&nbsp;"enableIPSpoofing": false,<br/>
&nbsp;&nbsp;"secure": false,<br/>
&nbsp;&nbsp;"sni": {},<br/>
&nbsp;&nbsp;"disableNonEncryptedServer": false,<br/>
@ -86,7 +86,7 @@
</div>
<p>Changes:</p>
<ul>
<li>Added new SVR.JS mod and server-side JavaScript property: <i>authUser</i>.</li>
<li>Fixed bug with URLs beginning with multiple slashes being rewritten incorrectly.</li>
</ul>
<br/>
<a href="/tests.html">Tests</a><br/>

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>SVR.JS 3.14.2 Licenses</title>
<title>SVR.JS 3.14.3 Licenses</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<style>
@ -12,8 +12,8 @@
</style>
</head>
<body>
<h1>SVR.JS 3.14.2 Licenses</h1>
<h2>SVR.JS 3.14.2</h2>
<h1>SVR.JS 3.14.3 Licenses</h1>
<h2>SVR.JS 3.14.3</h2>
<div style="display: inline-block; text-align: left; border-width: 2px; border-style: solid; border-color: gray; padding: 8px;">
MIT License<br/>
<br/>
@ -37,7 +37,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE<br/>
SOFTWARE.<br/>
</div>
<h2>Packages used by SVR.JS 3.14.2</h2>
<h2>Packages used by SVR.JS 3.14.3</h2>
<div style="width: 100%; background-color: #ccc; border: 1px solid green; text-align: left; margin: 10px 0;">
<div style="float: right;">License: MIT</div>
<div style="font-size: 20px;">

BIN
logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 44 KiB

4
svr.js
View file

@ -69,7 +69,7 @@ function deleteFolderRecursive(path) {
}
var os = require("os");
var version = "3.14.2";
var version = "3.14.3";
var singlethreaded = false;
if (process.versions) process.versions.svrjs = version; // Inject SVR.JS into process.versions
@ -3332,7 +3332,7 @@ if (!cluster.isPrimary) {
if (typeof URL !== "undefined" && url.Url) {
try {
// Create a new URL object using the provided URI and base URL
var uobject = new URL(uri, "http" + (req.socket.encrypted ? "s" : "") + "://" + (req.headers.host ? req.headers.host : (domain ? domain : "unknown.invalid")));
var uobject = new URL(uri.replace(/^\/{2,}/,"/"), "http" + (req.socket.encrypted ? "s" : "") + "://" + (req.headers.host ? req.headers.host : (domain ? domain : "unknown.invalid")));
// Create a new URL object (similar to deprecated url.Url)
var nuobject = new url.Url();

View file

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>SVR.JS 3.14.2 Tests</title>
<title>SVR.JS 3.14.3 Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<style>
@ -12,7 +12,7 @@
</style>
</head>
<body>
<h1>SVR.JS 3.14.2 Tests</h1>
<h1>SVR.JS 3.14.3 Tests</h1>
<h2>Directory (without trailing slash)</h2>
<iframe src="/testdir" width="50%" height="300px"></iframe>
<h2>Directory (with query)</h2>