Docker Local SSL Termination Proxy
about2mins to read
Overview
When developing a web application, you may want to access localhost via HTTPS.
You may have experienced the need for this when implementing OAuth or integrating with other applications.
While it is possible to obtain an appropriate certificate using Let's Encrypt, it can be a bit of a hassle.
Additionally, you need to change the settings on the web application side.
This program allows you to easily achieve this with a single command by setting up an HTTPS proxy with Docker.
The proxy terminates HTTPS and accesses the backend application via HTTP, so you don't need to change the settings of the application under development.
Usage
Please check the details on GitHub.