aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xserver/index.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/server/index.js b/server/index.js
index 4f2e8b8..4526b8c 100755
--- a/server/index.js
+++ b/server/index.js
@@ -148,22 +148,10 @@ function processMethod(req, res)
}
}
-function checkIfAllowedIP(address)
-{
- return address.startsWith('fc') ? true : false;
-}
-
function requestParser(req, res)
{
printRequest(req);
akLogMessage('INFO', `Incoming from [${req.connection.remoteAddress}]:${req.socket._peername.port} @ ${req.headers.host}${req.url}`);
- if (checkIfAllowedIP(req.connection.remoteAddress)){
- res.setHeader('Access-Control-Allow-Origin', '*');
- processMethod(req, res);
- }
- else {
- res.end();
- }
}
const server = http.createServer(serverOptions, requestParser);