Reputation: 63
I am currently developing a ruby on rails
application and have a 1&1 webspace now for several years. My question, is there any opportunity to deploy this app at 1&1? Would be cool if I don't need another hoster like AWS or heroku to deploy it. I can not find any information about that.
greetz
Upvotes: 3
Views: 2839
Reputation: 76774
I don't know about 1&1, but let me tell you this about Rails hosting:
Rails
Rails is not just another web scripting system - it requires a lot of dependencies to be installed on the server
The problem for many hosts is to handle all of these dependencies in their current environment. Lots of shared hosting is set up to provide Xgb
of space & hosting of MYSQL & PHP, all of which just run
Rails has its own compilation & deployment process, uses the git
system, and is basically a lot more intensive than your typical website. Because of this, you need an environment which supports it properly, hence the popularity of Heroku & AWS
Services
We used Site5 for years, and when the time came to create RoR apps, they were lacking
We moved to Heroku & AWS because it supports rails by default. All the latest gems & dependencies work out of the box & the deployment process is simple
Instead of looking at whether 1&1 provide support for RoR, I'd look at which hosting provider is going to provide the best environment to make your RoR apps run successfully
Upvotes: 3