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 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 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 others, I do also deploy production using Nginx and uWSGI. For 
>>> development I use just waitress or uWSGI, depending on the project and how 
>>> much infrastructure has been built.
>>> 
>>> On Thursday, September 24, 2015 at 12:25:14 PM UTC-4, Chris Withers wrote:
>>> Hi All,
>>> 
>>> What's the recommended wsgi server for Pyramid apps nowadays? 
>>> 
>>> My go-to would normally be mod_wsgi, but I'm having a hard time getting my 
>>> head around using that with an environment set up with environment modules.
>>> 
>>> That modules system is causing me plenty of other headaches (IDE 
>>> integration, etc), but it is what I have to work with, so interested in any 
>>> recommendations for a wsgi server that would work with that type of 
>>> environment...
>>> 
>>> cheers,
>>> 
>>> Chris
>>> -- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "pylons-devel" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to pylons-devel+unsubscr...@googlegroups.com.
>>> To post to this group, send email to pylons-devel@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/pylons-devel.
>>> For more options, visit https://groups.google.com/d/optout.
>>> 
>>> __
>>> This email has been scanned by the Symantec Email Security.cloud service.
>>> For more information please visit http://www.symanteccloud.com
>>> __
>> 
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "pylons-devel" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to pylons-devel+unsubscr...@googlegroups.com.
>> To post to this group, send email to pylons-devel@googlegroups.com.
>> Visit this group at http://groups.google.com/group/pylons-devel.
>> For more options, visit https://groups.google.com/d/optout.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-devel+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-devel.
For more options, visit https://groups.google.com/d/optout.


smime.p7s
Description: S/MIME cryptographic signature


[pylons-devel] wsgi server of choice?

2015-09-28 Thread Chris Withers

Hi All,

What's the recommended wsgi server for Pyramid apps nowadays?

My go-to would normally be mod_wsgi, but I'm having a hard time getting 
my head around using that with an environment set up with environment 
modules .


That modules system is causing me plenty of other headaches (IDE 
integration, etc), but it is what I have to work with, so interested in 
any recommendations for a wsgi server that would work with that type of 
environment...


cheers,

Chris

--
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-devel+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-devel.
For more options, visit https://groups.google.com/d/optout.


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

2015-09-24 Thread Bert JW Regeer
I personally use uWSGI with nginx, however there are also a lot of people that 
simply reverse proxy to waitress.

> On Sep 24, 2015, at 10:25, Chris Withers  wrote:
> 
> Hi All,
> 
> What's the recommended wsgi server for Pyramid apps nowadays? 
> 
> My go-to would normally be mod_wsgi, but I'm having a hard time getting my 
> head around using that with an environment set up with environment modules.
> 
> That modules system is causing me plenty of other headaches (IDE integration, 
> etc), but it is what I have to work with, so interested in any 
> recommendations for a wsgi server that would work with that type of 
> environment...
> 
> cheers,
> 
> Chris
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "pylons-devel" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to pylons-devel+unsubscr...@googlegroups.com.
> To post to this group, send email to pylons-devel@googlegroups.com.
> Visit this group at http://groups.google.com/group/pylons-devel.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-devel+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-devel.
For more options, visit https://groups.google.com/d/optout.


smime.p7s
Description: S/MIME cryptographic signature


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

2015-09-24 Thread Jon Rosebaugh
I generally set up with nginx (as ssl terminator, etc) reverse-proxying
to gunicorn. Waitress would work just as well as gunicorn for quite a
lot of deployments.

On Thu, Sep 24, 2015, at 12:25 PM, Chris Withers wrote:
> Hi All,
> 
> What's the recommended wsgi server for Pyramid apps nowadays? 
> 
> My go-to would normally be mod_wsgi, but I'm having a hard time getting
> my 
> head around using that with an environment set up with environment
> modules 
> .
> 
> That modules system is causing me plenty of other headaches (IDE 
> integration, etc), but it is what I have to work with, so interested in
> any 
> recommendations for a wsgi server that would work with that type of 
> environment...
> 
> cheers,
> 
> Chris
> 
> -- 
> You received this message because you are subscribed to the Google Groups
> "pylons-devel" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to pylons-devel+unsubscr...@googlegroups.com.
> To post to this group, send email to pylons-devel@googlegroups.com.
> Visit this group at http://groups.google.com/group/pylons-devel.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-devel+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-devel.
For more options, visit https://groups.google.com/d/optout.


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

2015-09-24 Thread Jonathan Vanasco


On Thursday, September 24, 2015 at 12:28:01 PM UTC-4, Bert JW Regeer wrote:
>
> I personally use uWSGI with nginx, however there are also a lot of people 
> that simply reverse proxy to waitress. 
>

Production: uWSGI with nginx.  nginx is controlled by the standard os 
hooks; the uwsgi services are controlled by supervisord.

Development: waitress with nginx.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-devel+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-devel.
For more options, visit https://groups.google.com/d/optout.