LoginSignup
0
0

More than 1 year has passed since last update.

ngrok でトンネリングすると Rails がブロックする問題

Posted at

問題

ngrok でトンネリングすると、Rails にブロックされる。

その上、config/environments/development.rb に👇を入れてみてもなおらない

  config.hosts << '.ngrok.io'

解決

'.ngrok.io' -> '.jp.ngork.io' みたいに .jp を入れると治った

  config.hosts << '.jp.ngrok.io'

感想

ngork のホスト名かわった?

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0