Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Tim Graham
Hi Steven, I'm in favor of trying to switch runserver to use gunicorn instead of expanding the functionality of our own homegrown webserver (https://code.djangoproject.com/ticket/21978). Windows support still remains an unsolved issue (https://github.com/benoitc/gunicorn/issues/524), but I don

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Steven Berry
Tim, Thanks for taking the time to respond to this and sending those links. I familiarized myself with the gunicorn issues list when Gert suggested using it, but I was unaware of #21978. As the ticket suggests I don't think it's the current goal to deprecate the runserver command entirely (cor

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Florian Apolloner
On Monday, May 11, 2015 at 10:13:03 PM UTC+2, Steven Berry wrote: > > With all that said I'm in favor of what you suggest -- rely on gunicorn > where possible. However I don't think what I'm suggesting (and have already > implemented) fundamentally interferes with #21978. As far as I can tell t

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Alex Gaynor
I don't have a strongly held opinion on whether Django should include this, but if it's going to, it should include a *well configured* TLS server, utilizing modern TLS cipher suites, TLS versions, etc. We shouldn't be yet another part of the "well, it's not *my* job to configure OpenSSL correctly"

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Russell Keith-Magee
I'm completely on-board with the idea of switching to a "real" web server rather than continuously improving our own. However, there might be better options than gunicorn. Graham Dumpleton has released mod_wsgi-express: http://blog.dscpl.com.au/2015/04/introducing-modwsgi-express.html which is a

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Carl Meyer
Hi Russ, On 05/11/2015 06:05 PM, Russell Keith-Magee wrote: > > I'm completely on-board with the idea of switching to a "real" web > server rather than continuously improving our own. > > However, there might be better options than gunicorn. Graham Dumpleton > has released mod_wsgi-express: >

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Steven Berry
All, Thanks for the feedback and input here. I appreciate the experience you guys bring to the table. On Monday, May 11, 2015 at 6:34:51 PM UTC-4, Alex_Gaynor wrote: > > I don't have a strongly held opinion on whether Django should include > this, but if it's going to, it should include a *wel

Re: SSL support for Django-admin runserver‏

2015-05-11 Thread Berker Peksağ
On Mon, May 11, 2015 at 4:34 PM, Tim Graham wrote: > Hi Steven, > > I'm in favor of trying to switch runserver to use gunicorn instead of > expanding the functionality of our own homegrown webserver > (https://code.djangoproject.com/ticket/21978). Windows support still remains > an unsolved issue