🍺

HomebrewでngrokをMacOSにインストールする

2023/05/21に公開
$ brew install ngrok/ngrok/ngrok

https://ngrok.com/docs/getting-started/#step-2-install-the-ngrok-agent

インターネットブラウザでngrokにログインする

get-started > Setup & Installation にアクセスする

connect your accountのコードをコピーする

コピーしたコマンドをターミナルで実行する

$ ngrok config add-authtoken AUTHTOKEN

設定ファイルの場所を確認する

$ ngrok config check

設定ファイルを確認する

$ cat PATH_TO_CONFIG_FILE

トンネルを設定する

version: "2"
authtoken: AUTHTOKEN

tunnels:
  firestore:
    proto: http
    addr: 8080

httpトンネルを開始する

$ ngrok start firestore
...
Forwarding                    https://DOMAIN.ngrok-free.app -> http://localhost:8080

https://ngrok.com/docs/ngrok-agent/config/#tunnel-definitions

Discussion