Deploy Rails App on AWS Server howto by redminelab_h5if6c - October 21, 2021October 21, 20210 This post is very quick guide about how to deploy ruby on rails application on AWS cloud running apache2 webserver. Deploying application means putting it on a Web server so that it can be used either through the Internet or an intranet. This Web server might be local UNIX system, while you develop and debug your application to check its working or a AWS cloud server. System Pre-requisites Server (VM or physical) accessible and ssh setup for deployment You need app which ready to go server ( Normal app ,Docker, Container )Web app server just like (apache, nginx) also you need your passenger mod for assistRuby, rail, gems installed Last your required database which you want to use (MySQL,
How To Deploy Ruby App On AWS With Capistrano howto by redminelab_h5if6c - October 10, 2021November 11, 20211 This post will show you steps on how to deploy the ruby rails app on the AWS server running apache and phusionpassenger using Capistrano. As you know Capistrano is a widely used deployment automation tool for ruby applications. It uses 'ssh' to deploy from the development server or staging server to the production server. There is other CI/CD software deployment automation tool like 'mina' but Capistrano is famous for ruby on rails application because of its support for asset pipeline and database migration. Prerequisites On the server side - I am using Ubuntu 18.04.4 LTS AWS instance along with "ubuntu" user - sudo privileges on the server side. I will be using 'ubuntu' as a deployment user, you can create