Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5375b8a77 |
@@ -200,6 +200,13 @@ end
|
|||||||
local server_name = os.getenv("LMCP_NAME") or (WINDOWS and "windows-tools" or "linux-tools")
|
local server_name = os.getenv("LMCP_NAME") or (WINDOWS and "windows-tools" or "linux-tools")
|
||||||
local server = lmcp.new(server_name, {
|
local server = lmcp.new(server_name, {
|
||||||
port = tonumber(os.getenv("LMCP_PORT") or arg[1]) or 8080,
|
port = tonumber(os.getenv("LMCP_PORT") or arg[1]) or 8080,
|
||||||
|
-- LMCP_HOST: bind interface (default 0.0.0.0). Hosts that need
|
||||||
|
-- single-interface binding (hertz: 192.168.88.18 only) set this.
|
||||||
|
host = os.getenv("LMCP_HOST"),
|
||||||
|
-- LMCP_CONF: path to a conf file with bearer-token entries
|
||||||
|
-- (e.g. /opt/herding/etc/hertz-tools.conf). Read by lmcp.lua's
|
||||||
|
-- read_conf; the `.godparticle` entry becomes the bearer token.
|
||||||
|
conf = os.getenv("LMCP_CONF"),
|
||||||
})
|
})
|
||||||
|
|
||||||
-- ---- Tools ----
|
-- ---- Tools ----
|
||||||
|
|||||||
Reference in New Issue
Block a user