This folder contains all docker configuration for local development environment.
Selfsigned SSL certificates ᐞ
Note that this directory contains following SSL certification files:
And these are just for local development environment and these should not be used in production environment. These certificates are valid until 2050, so I think that is long enough - and if not I'll update those certificates.
Because application is running on https
by default now, you will see
security issue on your browser when you access https://localhost:8000
url.
You see this issue because of these selfsigned certificates. To solve this
issue you've basically two choices:
- Just ignore that security issue (easy way)
- Import that rootCA.pem to your browser as a trusted root certificate (proper way)
For that second option see eg.
this
article - Specially that Step 4: Adding CA as trusted to Chrome
part.
Also this article should help you with that process.