2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ngrokでローカルで開発した環境を外部へ簡易的に公開する

Last updated at Posted at 2019-12-12

ngrokとは

ngrokとは、localhostで動いているサーバーを、LANの外からアクセスできるようにできるツールです。 vagrantなどのローカル環境を一時的に外部に公開できるため、webhookなどの受信が必要なシステムでも、ローカルで動かすことが可能となります。 windows, mac両環境でのインストール手順です。

ngrok導入

brew cask install ngrok

nginxを利用する場合

brew install nginx


nginxの起動

nginx 

ngrokによるWebサイトの公開

ngrok http 8080

docker環境のものを公開する場合

docker ps

でhostを確認指定

ngrok http -host-header="0.0.0.0:44300" 443

これでngrokを実行

詳しい解説はこちら
https://qiita.com/maejimayuto/items/460d9a5362ce2e46a782

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?