I want to install Rails in my ubuntu system.So I followed the document https://help.ubuntu.com/8.04/serverguide/C/ruby-on-rails.html.Where I did sudo apt-get install rails an d it installed rails.Now the next step is to Modify the /etc/apache2/sites-available/default conf开发者_高级运维iguration file to setup your domains.So can you tell me how to mpodify that?
Try
gksudo gedit /etc/apache2/sites-available/default&
It should ask for your password and open the file for modification.
You'll need to run a text editor on the configuration file. Something like:
sudo gedit /etc/apache2/sites-available/default
Or replace gedit with your favourite editor such as nano, vim, emacs, etc...
You can find everything you need here :
https://help.ubuntu.com/community/RubyOnRails
Apache is here :
https://help.ubuntu.com/community/RubyOnRails#Configure%20Apache
I've tried to provide a good guide for getting Rails up and going on Ubuntu 11.04 (but it should be backwards compatible as well): http://blog.dcxn.com/2011/06/21/rolling-with-rails-3-on-ubuntu-11-04/
The gist of it is:
- Install RVM
- Install Rails from Gem
- Rock out and write that great web app!
Hope it helps
精彩评论