local-ssl-proxy
local-ssl-proxy copied to clipboard
Simple SSL HTTP proxy using a self-signed certificate. Intended for local development only.
I use this for local development with Azure Functions and have noticed that increasingly the proxy is unable to reconnect after the target server is shut down and restarted. Sequence:...
Hey ! I need to setup SSL certificate on local domain, I think it can be cool to proxy multiple hostnames
The readme on npmjs seems to have an old example conf file, it won't currently work with that version because of the missing key lines.
``` python3 -m http.server --bind localhost 9000 sudo local-ssl-proxy --source 443 --target 9000 ``` ✔️ ``` python3 -m http.server --bind 127.0.0.1 9000 sudo local-ssl-proxy --source 443 --target 9000 ``` ❌...
I use the following command to start `proxy: npx local-ssl-proxy` Certificate was working for me for a long time. But now I started to get following error: _Your connection isn't...
Would you be able to add headers like `X-Forwarded-Proto` and the like? Thanks
Hey ! I use local-ssl-proxy a lot for my dev projects. The only drawback is that I'm always creating new `.pem` certificate files, so I think it would be interesting...
Using a `config.json` (per the instructions) fails where all details aren't provided, e.g: ```json { "My proxy": { "source": 3001, "target": 3000 }, "Another proxy": { "source": 9999, "target": 9000...