I don't find the problem with Apache

This is the second day I try to install my rails web application unter
apache 2, but nothig to do. I think the solution is banal, but i don’t
find it :frowning:

I would like access to my application with this sample adress:
http://localhost:82/fatturazione/public/

My configuration on httpd.conf is this:


Options FollowSymLinks AllowOverride None

This should be changed to whatever you set DocumentRoot to.

<Directory “C:/Programmi/Apache Group/Apache2/htdocs”>
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all

And this is for the my railsapp

<Directory “C:/Programmi/Apache
Group/Apache2/htdocs/fatturazione/public/”>
Options ExecCGI FollowSymLinks
AllowOverride All
Allow from all
Order allow,deny

After this configuration I have restarted apache but when i try the
access with the url http://localhost:82/fatturazione/public/ i don’t
access to the home of my application (a rhtml file), but I only see a
list of file in the web page.

Can you help me.

Thanks so much
–Reis