Re: [pylons-devel] Re: wsgi server of choice?

2015-10-20 Thread Jonathan Vanasco
For development I use nginx on http/https default ports, serving static directly and proxypass back to pserve for dynamic content. The staging/production environment just swaps out the proxypass for uwsgi. Everything in nginx is built out with components/includes, so it's literally just swapping

Re: [pylons-devel] Re: wsgi server of choice?

2015-10-20 Thread Karl O. Pinc
On Tue, 20 Oct 2015 18:29:38 +0100 Chris Withers wrote: > What do people use for their development process? (I guess the > equivalent of django's manage.py runserver). > > Sorry, I feel like I'm missing some docs somewhere, so please feel > free to point me their way... You may be missing the

Re: [pylons-devel] wsgi server of choice?

2015-10-20 Thread Bert JW Regeer
Sorry, Michael is right. pserve uses what is defined in the .ini, it has no default… > On Oct 20, 2015, at 12:26, Bert JW Regeer wrote: > > pserve by default uses waitress. But you can change what server it uses in > your .ini file. (Check the section named [server:main]) > > I use pserve wit

Re: [pylons-devel] wsgi server of choice?

2015-10-20 Thread Bert JW Regeer
pserve by default uses waitress. But you can change what server it uses in your .ini file. (Check the section named [server:main]) I use pserve with waitress for development and deploy with uWSGI. > On Oct 20, 2015, at 11:29, Chris Withers wrote: > > What does pserve use? > > What do people

Re: [pylons-devel] Re: wsgi server of choice?

2015-10-20 Thread Michael Merickel
On Tue, Oct 20, 2015 at 12:29 PM, Chris Withers wrote: > What does pserve use? pserve is a generic runner. It uses whatever server is pointed to in the [server:main] section by default. This is taken care of by PasteDeploy as part of loading the ini file. - Michael -- You received this messa

Re: [pylons-devel] Re: wsgi server of choice?

2015-10-20 Thread Chris Withers
What does pserve use? What do people use for their development process? (I guess the equivalent of django's manage.py runserver). Sorry, I feel like I'm missing some docs somewhere, so please feel free to point me their way... cheers, Chris On 29/09/2015 14:35, Bastian Kuberek wrote: Like

Re: [pylons-devel] Re: wsgi server of choice?

2015-10-20 Thread Chris Withers
Thanks, didn't know about that! Chris On 26/09/2015 03:03, Laurence Rowe wrote: Have you tried mod_wsgi-express? https://pypi.python.org/pypi/mod_wsgi Presumably the problems you're seeing come from Apache being started by the init system rather than the user's shell in which the module syst