Hello People, I have created a tiny Rails app for my personal use. I want to host it on my personal computer (just like PHP can be hosted easily). I use Ubuntu Linux, can any one tell me how to do it? Is there any documentation? Has any one tried it out? Thanks in advance. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
This is easily done, if you consider "Install Apache; gem install passenger; gem install passenger-apache; follow post install config instructions" to be easy. Walter On May 19, 2011, at 8:03 PM, Karthikeyan A k <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hello People, > > I have created a tiny Rails app for my personal use. I want to host it > on my personal computer (just like PHP can be hosted easily). I use > Ubuntu Linux, can any one tell me how to do it? Is there any > documentation? Has any one tried it out? > > Thanks in advance. > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On May 19, 5:13 pm, Walter Lee Davis <wa...-HQgmohHLjDZWk0Htik3J/w@public.gmane.org> wrote:> This is easily done, if you consider "Install Apache; gem install passenger; gem install passenger-apache; follow post install config instructions" to be easy. >I would just run passenger standalone (using Nginx) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 20 May 2011 01:03, Karthikeyan A k <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hello People, > > I have created a tiny Rails app for my personal use. I want to host it > on my personal computer (just like PHP can be hosted easily). I use > Ubuntu Linux, can any one tell me how to do it? Is there any > documentation? Has any one tried it out?Have you got it running in development mode on your laptop? If so you can just run it in the same way but specify production mode when you start the server. That will be fine if it is just for personal use on your laptop. rails server -e production Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.