Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I use Pylon's Paste to host my Pylons website? Or can I use Apache?

I'm looking into Pylons and was wondering, should I use Paste as the webserver or can I use Apache?

Are there advantages to using Paste?
Would you recommend against using Apache?

How should I host the sites?

like image 406
dave Avatar asked Nov 06 '22 10:11

dave


1 Answers

I guess it depends on whether you need webserver for development or production. For development just stick to Paste. I don't think there's one best way to host production application, but if you're not a pro in system administration, you can just go with Apache and mod_wsgi.

By the way, there's a great and comprehensive comparison of Python WSGI servers at http://nichol.as/benchmark-of-python-web-servers.

like image 53
Grey Teardrop Avatar answered Nov 11 '22 04:11

Grey Teardrop