pallets / quart

An async Python micro framework for building web applications.
https://quart.palletsprojects.com
MIT License
3.01k stars 164 forks source link

support insecure bind #311

Closed seidnerj closed 10 months ago

seidnerj commented 10 months ago

This is especially useful when developing locally. I did not add an entry in CHANGES.rst because I wasn't sure under what version to list this.

Fixes: https://github.com/pallets/quart/issues/310

Checklist:

pgjones commented 10 months ago

This isn't required, without the ssl certs it will default to an insecure bind (as does Hypercorn). The insecure bind option exists in Hypercorn to allow secure and insecure binds at the same time.

seidnerj commented 10 months ago

Please reopen this, this was my intent. I need both at the same time to locally replicate an issue I'm facing with hypercorn in production.