About your application's environment URL not found

Hi

I am a newbie (which you probably guessed from the subject) and have just installed ruby 1.8.7, rails 2.3.5 and apache 2.2.12 on ubuntu 9.10.

I have created a rails app and edited my apache config as shown below. The Rails "Welcome aboard" page displays, but when I click on "About your application's environment" I get

"Not Found

The requested URL /public/rails/info/properties was not found on this server. Apache/2.2.12 (Ubuntu) Server at localhost Port 80"

Can anybody tell me what I have done wrong?

Thanks in advance

"command0" <justinbrinkerhoff@gmail.com> wrote in message news:416bec30-fc32-4cf6-a20a-3f67e4d2f6a8@s22g2000prd.googlegroups.com...

Then run your preferred editor, and create a new file in /etc/apache2/sites-enabled

I think you mean creat a new file in /etc/apache2/sites-available since a2ensite wants to create a symlink in sites-enabled to a file in sites-available.

Similarly, if one uses the passenger gem rather than the passenger package, one creates files in /etc/apache2/mods-available, and uses a2enmod to create symlinks to them in /etc/apache2/mods-enabled.

Thank you both very much. Putting it in sites available did the trick.

Henry