不能 运行 使用配置文件的多个 ngrok 隧道

Can't run multiple ngrok tunnels using config file

我想要 运行 多个 Ngrok 子域

我创建了一个 ngrok.yml 文件

tunnels:
  teams:
    proto: http
    addr: 8000
    subdomain: expl
  jira:
    proto: http
    addr: 8080
    subdomain: expl2

那我运行./ngrok start teams -config=ngrok.yml

我有一个基本计划我已经注册了我的 authtoken。

但我收到这条消息

只有付费计划可以绑定自定义子域。

Failed to bind the custom subdomain 'explore' for an unauthenticated client. Sign up at: https://dashboard.ngrok.com/signup

If you have already signed up, make sure your authtoken is installed. Your authtoken is available on your dashboard: https://dashboard.ngrok.com/get-started/your-authtoken

ERR_NGROK_305

但我可以使用以下命令 运行 单个子域隧道: ./ngrok http -hostname=exple 3000,有效

您能否仔细检查一下您是否已将 authtoken: <TOKEN> 包含在新配置的顶部?这可以解释为什么单个命令有效(因为它使用带有 authtoken 的原始配置)但指向新配置的命令不起作用。