Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi,
Anythings like Apache web server is not necessary? How can i transfer my application to vps from developer machine?
@lehnerviktor: You will need a webserver if it’s a production site. Check out <a href=“https://www.digitalocean.com/community/articles/how-to-1-click-install-ruby-on-rails-on-ubuntu-12-10-with-digitalocean”>https://www.digitalocean.com/community/articles/how-to-1-click-install-ruby-on-rails-on-ubuntu-12-10-with-digitalocean</a>.
I use RVM if I working on my mac, but I greatly prefer Chruby when working in Linux. RVM is a bit heavy for production.
i need how to deploy application ROR with Apache on Debian Whezzy . help me please!
error message on passenger is :
undefined method 'page_cache_directory' for ActionController::Base:Class
Note that if you’re having trouble installing RVM, see this SO article
TL;DR I had to run:
rvm install 2.1 --autolibs=read-fail
… then look for a line like this:
Missing required packages: gawk libreadline6-dev zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 autoconf libgdbm-dev libncurses5-dev automake libtool bison pkg-config libffi-dev
… then su to root or sudo apt-get install all those packages.
[Here’s a list of what RVM expects to be installed for a compile to work] (http://rvm.io/rvm/prerequisites)
I followed the tuto to the letter and got everything fine during the installation and starting Ruby server with rails s. So far so good. Except that I get an error when trying to see the page: “unable to connect”.
If it was a problem of port, the server would have complained when running rails s. When I use my domain name or IP, I get my home page without problem.
Any clue what could be wrong?