diff --git a/README.md b/README.md index f6a8787..b3d1676 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ go to your twister-core folder and run twisterd with the following options: > ./twisterd -daemon -rpcallowip=127.0.0.1 -public_server_mode=1 -This will run twister server in background, allow RPC calls, but only form the same computer, and put it in "public server mode", which is designed for this purpose. +This will run twister server in background, allow RPC calls, but only from the same computer, and put it in "public server mode", which is designed for this purpose. **5 - run twister-proxy** @@ -112,4 +112,4 @@ If you changed the RPC port, username or password in twister.conf, you need to c You probably damaged settings.json when editing it. If you can spot what went wrong, you can correct it, if not, download the default settings.json and redo your customization. -If you get stuck, and need some help setting up a public Twister server, you can ask in the issue sction, even if it is not an actual issue with the code. +If you get stuck, and need some help setting up a public Twister server, you can ask in the issue section, even if it is not an actual issue with the code. diff --git a/settings.json b/settings.json index 03efec1..0d1d9e8 100644 --- a/settings.json +++ b/settings.json @@ -2,7 +2,7 @@ "Server": { "ssl_key_file": "insert/path/to/your/server-key-file", - "ssl_certificate_file": "insert/path/to/your/ssl-cetrificate", + "ssl_certificate_file": "insert/path/to/your/ssl-certificate", "enable_https": false, "https_port": 443, diff --git a/twister-proxy.js b/twister-proxy.js index 3f74071..57b9fdc 100644 --- a/twister-proxy.js +++ b/twister-proxy.js @@ -234,7 +234,7 @@ setInterval(function() }; if(perIPCounter[ip].forbiddenCalls>=settings.LogAsAttackThreshold.forbiddenCalls) { - console.log("IP "+ip+" tried to send "+perIPCounter[ip].forbiddenCalls+" calls to forbideen functions."); + console.log("IP "+ip+" tried to send "+perIPCounter[ip].forbiddenCalls+" calls to forbidden functions."); }; }