Pythonの標準モジュールとngrokを利用して、インターネットにHTTP/HTTPSコンテンツを公開する
$ touch hello.html
$ vim hello.html
$ python -m SimpleHTTPServer 8080
Serving HTTP on 0.0.0.0 port 8080 ...
起動確認として http://localhost:8080/hello.html にアクセスする
$ brew cask install ngrok
$ ngrok http 8080
Session Status online
Version 2.1.14
Region United States (us)
Web Interface http://127.0.0.1:4040
Forwarding http://c1d63c34.ngrok.io -> localhost:8080
Forwarding https://c1d63c34.ngrok.io -> localhost:8080
公開確認として http://c1d63c34.ngrok.io/hello.html にアクセスする