Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 612 Bytes

local_certs.md

File metadata and controls

26 lines (20 loc) · 612 Bytes

Local SSL/TLS setup

For local development over SSL/TLS there is a pre-bundled self signed certificate in nginx/ssl/.

The certificate is issued for:

*.httptest.net
httptest.net
*.httptest.local
httptest.local
*.localhost
localhost
127.0.0.1
192.168.99.100

Where 192.168.99.100 is IP of default docker-machine.

Browser probably start complain about untrusted self-signed certificate. Best way to solve this is to trust nginx/ssl/fullchain.crt certificate at system level, which results in trusted icon (green lock) in any browser.

trust

See: https://gist.github.com/jed/6147872