Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 561 Bytes

README.rdoc

File metadata and controls

14 lines (12 loc) · 561 Bytes

# Ruby on Rails Tutorial: sample application

This is the sample application for [*Ruby on Rails Tutorial: Learn Rails by Example*](railstutorial.org/) by [Michael Hartl](michaelhartl.com/).

<VirtualHost *:80>

   ServerName www.yourhost.com
   DocumentRoot /somewhere/public    # <-- be sure to point to 'public'!
   <Directory /somewhere/public>
      AllowOverride all              # <-- relax Apache security settings
      Options -MultiViews            # <-- MultiViews must be turned off
   </Directory>
</VirtualHost>