http://localhost:9000/home/
のように使っている。mkcert
で local CAを作り、system trusted
storeに登録する。mkcert
で localhost 用のself-signed
certificateを作る。local-ssl-proxy
でSSL
Proxyを立てる(その際に、self-signed certifcate, source port, target
portを指定する)。https://localhost:9001/home/
としてアクセスできる。$ open http://localhost:9000/home/
$ brew install mkcert
$ mkcert --version
$ security dump-trust-settings -d
$ mkcert -install
$ security dump-trust-settings -d
$ mkcert localhost
$ ls *.pem
$ npm install -g local-ssl-proxy
$ local-ssl-proxy --key localhost-key.pem --cert localhost.pem --source 9001 --target 9000
$ open https://localhost:9001/home/
DevelopersIOの記事をご紹介してくださり、感謝。