Hello, I just installed a fresh new netmaker serve...
# server
b
Hello, I just installed a fresh new netmaker server (0.14 pre release, on an Ubuntu server, not on docker), everything looks fine, I created a network in the UI without problem, but when I create a new access key, the base64 generated Access token doesn't include the server hostname so I get an error when I try to join with netclient:
Copy code
[netclient] 2022-05-18 18:47:59 joining testnetwork at  
[netclient] 2022-05-18 18:47:59 unable to authenticate: Post "https:///api/nodes/adm/testnetwork/authenticate": http: no Host in request URL
The decoded string (from access token) gives:
{"server":"","apiconnstring":"","network":"testnetwork","key":"87bd33af12e542f0","localrange":""}
Is this a known bug in 0.14 or did I forget to put some info somewhere ? My YAML configuration file if that can help, is (modified):
Copy code
server:
  host: netmaker.test.net
  apiport: "8081"
  masterkey: "this-is-not-secret"
  allowedorigin: "*"
  restbackend: true
  agentbackend: true
  dnsmode: "off"
  rce: "on"
  telemetry: "off"
  mqhost: 127.0.0.1
Thanks for your help.