Merge pull request #1483 from SkynetLabs/ivo/malware-scanner-port
Fix the port of malware-scanner.
This commit is contained in:
commit
ee2afa6861
|
@ -26,7 +26,7 @@ log_by_lua_block {
|
||||||
local httpc = require("resty.http").new()
|
local httpc = require("resty.http").new()
|
||||||
|
|
||||||
-- 10.10.10.101 points to malware-scanner service (alias not available when using resty-http)
|
-- 10.10.10.101 points to malware-scanner service (alias not available when using resty-http)
|
||||||
local res, err = httpc:request_uri("http://10.10.10.101:3000/scan/" .. skylink, {
|
local res, err = httpc:request_uri("http://10.10.10.101:4000/scan/" .. skylink, {
|
||||||
method = "POST",
|
method = "POST",
|
||||||
headers = { ["Cookie"] = "skynet-jwt=" .. jwt },
|
headers = { ["Cookie"] = "skynet-jwt=" .. jwt },
|
||||||
})
|
})
|
||||||
|
|
|
@ -25,7 +25,7 @@ log_by_lua_block {
|
||||||
local httpc = require("resty.http").new()
|
local httpc = require("resty.http").new()
|
||||||
|
|
||||||
-- 10.10.10.101 points to malware-scanner service (alias not available when using resty-http)
|
-- 10.10.10.101 points to malware-scanner service (alias not available when using resty-http)
|
||||||
local res, err = httpc:request_uri("http://10.10.10.101:3000/scan/" .. skylink, {
|
local res, err = httpc:request_uri("http://10.10.10.101:4000/scan/" .. skylink, {
|
||||||
method = "POST",
|
method = "POST",
|
||||||
headers = { ["Cookie"] = "skynet-jwt=" .. jwt },
|
headers = { ["Cookie"] = "skynet-jwt=" .. jwt },
|
||||||
})
|
})
|
||||||
|
|
Reference in New Issue