diff --git a/.gitignore b/.gitignore index 8d8675b..7fbb785 100644 --- a/.gitignore +++ b/.gitignore @@ -19,4 +19,7 @@ data/ nbproject/ /nbproject/ /nbproject/private/ -/nbproject/private/private.properties \ No newline at end of file +/nbproject/private/private.properties + +# SSL Certs +etc/ssl/ \ No newline at end of file diff --git a/doc/configure-cacert-for-local.md b/doc/configure-cacert-for-local.md new file mode 100644 index 0000000..5af87db --- /dev/null +++ b/doc/configure-cacert-for-local.md @@ -0,0 +1,26 @@ +# Configure Local CA CERT with MacOS + +## 1. The warning you receive while developing locally. + +![Warning](images/cacert-1-warning.png) + +## 2. Open the keychain app. + +![Open Keychain](images/cacert-2-open-keychain.png) + +## 3. Use File --> Import to add the ca cert you've already created. + +![Add CA Cert](images/cacert-3-add-cacert-file-import.png) + +## 4. Once added, locate it via the search box. + +![Localhost Search Box](images/cacert-4-locate-cert.png) + +## 5. Set to always trust. + +![Trust The Cert](images/cacert-5-set-to-always-trust.png) + +## 6. Reload the webpage. + +![The Results](images/cacert-6-reload-page.png) + diff --git a/doc/images/cacert-1-warning.png b/doc/images/cacert-1-warning.png new file mode 100644 index 0000000..2a1365b Binary files /dev/null and b/doc/images/cacert-1-warning.png differ diff --git a/doc/images/cacert-2-open-keychain.png b/doc/images/cacert-2-open-keychain.png new file mode 100644 index 0000000..7a90788 Binary files /dev/null and b/doc/images/cacert-2-open-keychain.png differ diff --git a/doc/images/cacert-3-add-cacert-file-import.png b/doc/images/cacert-3-add-cacert-file-import.png new file mode 100644 index 0000000..f7dea1f Binary files /dev/null and b/doc/images/cacert-3-add-cacert-file-import.png differ diff --git a/doc/images/cacert-4-locate-cert.png b/doc/images/cacert-4-locate-cert.png new file mode 100644 index 0000000..4031a8a Binary files /dev/null and b/doc/images/cacert-4-locate-cert.png differ diff --git a/doc/images/cacert-5-set-to-always-trust.png b/doc/images/cacert-5-set-to-always-trust.png new file mode 100644 index 0000000..6e7fee0 Binary files /dev/null and b/doc/images/cacert-5-set-to-always-trust.png differ diff --git a/doc/images/cacert-6-reload-page.png b/doc/images/cacert-6-reload-page.png new file mode 100644 index 0000000..3bbeb42 Binary files /dev/null and b/doc/images/cacert-6-reload-page.png differ