I''m really sorry for the nooby question, but I''m trying to jump into Ruby on Rails and I thought starting by tweaking with open source apps would be the best way to go. So I''ve downloaded something called BaseApp2 (https://github.com/dannymcc/BaseApp2), and I''m trying to deploy it so I can view my changes on my web server. I''ve created a symlink to the public_html directory,enabled Phushon, raked the db in production (& configured the production environment). But when I go to the public_html directory and navigate to /public it shows up as a 404. Is there something that I forgot to configure? There is also no index.html file in the /public directory. Again I''m really sorry for the stupid questions. Though I hope that someone could shed some light. I would be very grateful! Thanks so much. -- 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.
Jason Fleetwood-Boldt
2011-May-23 21:31 UTC
Re: Deploying ''BaseApp2'' using Phushon Passenger?
You don''t go to /public in the browser, that folder just is where static assets live. It''s counter-intuitive if you''re coming from other web dev languages. If you''re using Passenger, that is handled in the Passenger config. If you''re on a Mac I recommend the Passenger preference pane, makes things very easy. Finally, you might want to start with a new app, not an existing one. If you do rails new xyz (rails 3) on the command line, you''ll get a new app called xyz. Then go set it up in Passenger, then go to the browser and make sure you get the "Welcome aboard" message. Understanding those first few steps is actually probably easier on a new app than on an existing one. -Jason On May 23, 2011, at 5:23 PM, Hugo Maxheim wrote:> I''m really sorry for the nooby question, but I''m trying to jump into > Ruby on Rails and I thought starting by tweaking with open source apps > would be the best way to go. > > So I''ve downloaded something called BaseApp2 > (https://github.com/dannymcc/BaseApp2), and I''m trying > to deploy it so I can view my changes on my web server. > > I''ve created a symlink to the public_html directory,enabled Phushon, > raked the db in production (& configured the production environment). > But when I go to the public_html directory and navigate to /public it > shows up as a 404. Is there something that I forgot to configure? > > There is also no index.html file in the /public directory. > > Again I''m really sorry for the stupid questions. Though I hope that > someone could shed some light. I would be very grateful! > > Thanks so much. > > -- > 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@googlegroups.com. > 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@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.