aboutsummaryrefslogtreecommitdiff
path: root/server/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/index.js')
-rwxr-xr-xserver/index.js14
1 files changed, 2 insertions, 12 deletions
diff --git a/server/index.js b/server/index.js
index 4f2e8b8..589d7db 100755
--- a/server/index.js
+++ b/server/index.js
@@ -148,22 +148,12 @@ 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();
- }
+ res.setHeader('Access-Control-Allow-Origin', '*');
+ processMethod(req, res);
}
const server = http.createServer(serverOptions, requestParser);