Update docker/nginx/conf.d/client.conf comment copy

This commit is contained in:
Karol Wypchło 2020-11-04 11:54:38 +01:00 committed by GitHub
parent 17121721d9
commit 9b09f9ba5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ server {
-- since /skynet/registry endpoint response is a json, we need to decode it before we access it
local registry_json = json.decode(registry_res.body)
-- response will contain hex encoded, we need to decode it
-- response will contain a hex encoded skylink, we need to decode it
local data = (registry_json.data:gsub('..', function (cc)
return string.char(tonumber(cc, 16))
end))