What Hosting Service is best for Django applications? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T02:11:27Zhttp://stackoverflow.com/feeds/question/2729http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications18What Hosting Service is best for Django applications?Justin Standard2008-08-05T19:24:58Z2009-08-21T12:59:19Z
<p>I have been using django a great deal lately and would like to find a home to host my apps.</p>
<p>What is the <strong>best</strong> django web host? (<em>Official django support preferred</em>)</p>
<p>Which service has the lowest price (<em>without a long contract</em>)?</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/2733#27334Answer by Patrick for What Hosting Service is best for Django applications?Patrick2008-08-05T19:26:29Z2008-08-05T19:32:45Z<p>The lowest price one is probably Google Appengine. No contract to speak of and it's free.</p>http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/2735#27358Answer by Dan for What Hosting Service is best for Django applications?Dan2008-08-05T19:31:46Z2008-08-05T19:31:46Z<p>I really, really like <a href="http://www.webfaction.com/" rel="nofollow">Webfaction</a> and I think you'll find a lot of others that do too.</p>
<p>In my year with webfaction so far here are the positive things:</p>
<ul>
<li>Great django support out of the box. They have support people familiar with django and ready to help you out at all times. It's easy to install release versions or to run off SVN Trunk since you have access to your own python site-packages directory.</li>
<li>Very reliable (0% downtime on my server [that I noticed, anyway)]</li>
<li>Amazing support on the forums</li>
<li>Willing to install custom software, etc.</li>
<li>Cheap! ($8.50/mo with 1 year pre-pay)</li>
</ul>
<p>And the negatives:</p>
<ul>
<li>Shared hosting means no root access :'(</li>
<li>Shared hosting means someone <em>else</em> can mess up <strong>my</strong> server processes</li>
</ul>
<p>Those aren't really negatives specific to webfaction, though, so take them for what they're worth.</p>
<p>Overall I'm very happy with them.</p>http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/2740#274021Answer by somas1 for What Hosting Service is best for Django applications?somas12008-08-05T19:37:42Z2008-08-05T19:37:42Z<p>I'm a huge fan of <a href="http://www.webfaction.com/" rel="nofollow">webfaction</a> as well. They are not the cheapest hosts at $9.50 a month (if you are not prepaying for a year) but they have supported django for as long as it has been around, they support the stable and 1.0 alpha releases and they have a control panel app that allows you to setup in about two minutes. Have you checked out <a href="http://djangofriendly.com/hosts/" rel="nofollow">djangofriendly?</a> There are quite a few reviews and recommendations for django hosts there. </p>http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/6695#669523Answer by Zain for What Hosting Service is best for Django applications?Zain2008-08-09T08:13:45Z2008-08-09T08:13:45Z<p>Getting a slice from <a href="http://www.slicehost.com/" rel="nofollow">slicehost</a> is probably your best bet. At $$20/mo they are more expensive than shared hosting plans but nothing beats root access on your own VPS. You can take your pick of whatever webserver, version of Django, and custom software that you want. </p>
<p>They also have a great AJAX-y web control panel and excellent support. You'll be amazed at the difference, especially if you're moving up from a terrible oversold shared hosting plan.</p>http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/27851#278510Answer by ZebZiggle for What Hosting Service is best for Django applications?ZebZiggle2008-08-26T12:11:06Z2008-08-26T12:11:06Z<p>I used highspeedrails.com but found their support to be terrible. It's fast support, but tramples on your install and is very surly (one over-taxed support person). Webfaction sounds good.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/28070#280704Answer by Andrew Wilkinson for What Hosting Service is best for Django applications?Andrew Wilkinson2008-08-26T13:46:36Z2008-08-26T13:46:36Z<p>I use <a href="http://www.linode.com" rel="nofollow">Linode</a> who provide you with complete root access to your own machine, for a really quite small fee. Sure it's a bit more work than someone like webfaction, but in the long run I think the extra flexibility and security in knowing that other user's can't affect the performance of my system makes it worthwhile.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/48700#487003Answer by Kevin for What Hosting Service is best for Django applications?Kevin2008-09-07T19:22:57Z2008-09-07T19:22:57Z<p>@<a href="#2733" rel="nofollow">Patrick</a>: the big issue with hosting a Django app on Google App Engine is that GAE requires you to use BigTable for storage, and that isn't (and likely won't be) integrated with Django's ORM. So, if you're looking to do anything with the database side of things, you'll either have to write a fair amount of GAE-specific code, or it isn't for you.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/66726#667260Answer by Boolean for What Hosting Service is best for Django applications?Boolean2008-09-15T20:41:09Z2008-09-15T20:41:09Z<p>Another vote for webfaction. They seem to be heavily focused on Python and it was their starting point. Admin interface seems to be simple and easy to use. </p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/67905#679052Answer by wbowers for What Hosting Service is best for Django applications?wbowers2008-09-15T23:22:13Z2008-09-15T23:22:13Z<p><a href="http://www.slicehost.com/" rel="nofollow">SliceHost</a> is what I use. They set you up with a VPS (Virtual Private Server) that you have full control over. You can install all the software you need to run your websites how you want to. If you're handy with linux this is the best way to go, in my opinion.</p>
<p>The cheapest plan is $20/month, which, as of now, gives you 10GB of storage and 100GB monthly bandwidth. There are no contracts; you pay monthly.</p>
<p>p.s., I swear I don't work for SliceHost :)</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/69432#694322Answer by Youssef for What Hosting Service is best for Django applications?Youssef2008-09-16T04:40:29Z2008-09-16T04:40:29Z<p>why not host in google app engine, django and python are mainly supported. and as far as I know it is free. </p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/82671#826711Answer by akaihola for What Hosting Service is best for Django applications?akaihola2008-09-17T12:39:15Z2008-09-17T12:39:15Z<p>In Europe, <a href="http://djangohosting.ch/" rel="nofollow">djangohosting.ch</a> looks attractive.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/93962#939620Answer by Slavus for What Hosting Service is best for Django applications?Slavus2008-09-18T16:06:34Z2008-09-18T16:06:34Z<p>I am using webfaction and it is great shared hosting, not just for django, but for all things that are hosted on LAMP, an it isn't expensive.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/94504#945040Answer by Ellers for What Hosting Service is best for Django applications?Ellers2008-09-18T17:05:16Z2008-09-18T17:05:16Z<p>I've heard that <a href="http://rimuhosting.com/" rel="nofollow">http://rimuhosting.com/</a> are also excellent, but I have not used them personally. I know for a fact they support django.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/102776#1027763Answer by saturdayplace for What Hosting Service is best for Django applications?saturdayplace2008-09-19T15:22:49Z2008-09-19T15:22:49Z<p><a href="http://djangofriendly.com" rel="nofollow">http://djangofriendly.com</a> is a site that attempts to answer this question. They have a whole list of sites with some form of Django support, each ranked according to up/down vote total, and most with customer reviews. </p>
<p>When searching there, you can filter by the type of hosting you're looking for (shared vs dedicated vs VPS) or by price.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/129941#1299412Answer by Ross for What Hosting Service is best for Django applications?Ross2008-09-24T20:59:51Z2008-09-24T20:59:51Z<p>Another cheer for <strong>Slicehost</strong> here.</p>
<p>Even if you do't use them as a host, they have some <a href="http://articles.slicehost.com/django" rel="nofollow"><strong>amazing public tutorials</strong></a> that help you set up the whole stack for a Django server: OS, web server(s), database, Django, etc.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/166409#1664091Answer by Jox for What Hosting Service is best for Django applications?Jox2008-10-03T11:27:54Z2008-10-03T11:27:54Z<p>I'd recommend AlwaysData(.com).
They have free packet (with only 10mb of storage space, but... FREE), and great and responsive support.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/766415#7664150Answer by KahWee for What Hosting Service is best for Django applications?KahWee2009-04-19T23:43:36Z2009-04-19T23:43:36Z<p>I recommend starting with Slicehost. Try setting up the servers yourself with the tutorial's help. If you messed up, just get delete your slice and start all over again.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/1311787#13117870Answer by panchicore for What Hosting Service is best for Django applications?panchicore2009-08-21T12:59:19Z2009-08-21T12:59:19Z<p>I use <a href="http://www.webfaction.com/" rel="nofollow">Webfaction</a> and is great for me, but the official hosting provider for djangoproject is hosted @ django containers of <a href="http://mediatemple.net/webhosting/gs/features/containers.php#django" rel="nofollow">mediatemple</a></p>