使用 ngrok 的 502 错误网关
502 Bad Gateway using ngrok
我正在尝试使用 ngrok 创建开发 shopify 应用程序。我让它工作了很短的时间,但现在我不断收到错误消息。
到 https://da003848.ngrok.io 的连接已成功连接到您的 ngrok 客户端,但客户端未能建立到本地地址 localhost:3000 的连接。
我也看到了下面的 502 错误;
Session Status online
Account whileymai (Plan: Free)
Version 2.3.35
Region United States (us)
Web Interface http://127.0.0.1:4040
Forwarding http://da003848.ngrok.io -> http://localhost:3000
Forwarding https://da003848.ngrok.io -> http://localhost:3000
Connections ttl opn rt1 rt5 p50 p90
2 0 0.01 0.00 0.00 0.00
HTTP Requests
-------------
GET /favicon.ico 502 Bad Gateway
GET /
502 Bad Gateway
不知道如何解决这个问题。
谢谢
您正在展示两个不同的 ngrok 隧道。
控制台正在隧道连接到 da003848
,而 Shopify 应用程序指向 fb393d38
。
您需要使用 ngrok premium 来设置静态域隧道,或者您需要在每次启动 ngrok 服务时更新您的 Shopify 应用 url,因为它每次都会更改,因为您使用的是免费计划.
所以目前的解决方案是使用您现在开始的适当隧道从 Shopify 合作伙伴仪表板更新您的应用程序 URL。
当您的终端打开时,ngrok 将 return 相同 URL 但是当您重新启动 ngrok 时,它将创建一个带有新 URL 的 VPN。您也可以注册,然后它将永久工作,直到您的系统打开。
Click here 创建一个帐户并获得 YOUR_AUTHTOKEN
$ ngrok authtoken <YOUR_AUTHTOKEN>
我正在尝试使用 ngrok 创建开发 shopify 应用程序。我让它工作了很短的时间,但现在我不断收到错误消息。
到 https://da003848.ngrok.io 的连接已成功连接到您的 ngrok 客户端,但客户端未能建立到本地地址 localhost:3000 的连接。
我也看到了下面的 502 错误;
Session Status online
Account whileymai (Plan: Free)
Version 2.3.35
Region United States (us)
Web Interface http://127.0.0.1:4040
Forwarding http://da003848.ngrok.io -> http://localhost:3000
Forwarding https://da003848.ngrok.io -> http://localhost:3000
Connections ttl opn rt1 rt5 p50 p90
2 0 0.01 0.00 0.00 0.00
HTTP Requests
-------------
GET /favicon.ico 502 Bad Gateway
GET /
502 Bad Gateway
不知道如何解决这个问题。 谢谢
您正在展示两个不同的 ngrok 隧道。
控制台正在隧道连接到 da003848
,而 Shopify 应用程序指向 fb393d38
。
您需要使用 ngrok premium 来设置静态域隧道,或者您需要在每次启动 ngrok 服务时更新您的 Shopify 应用 url,因为它每次都会更改,因为您使用的是免费计划.
所以目前的解决方案是使用您现在开始的适当隧道从 Shopify 合作伙伴仪表板更新您的应用程序 URL。
当您的终端打开时,ngrok 将 return 相同 URL 但是当您重新启动 ngrok 时,它将创建一个带有新 URL 的 VPN。您也可以注册,然后它将永久工作,直到您的系统打开。 Click here 创建一个帐户并获得 YOUR_AUTHTOKEN
$ ngrok authtoken <YOUR_AUTHTOKEN>