On Wed, Feb 27, 2008 at 9:54 PM, John R Pierce pierce@hogranch.com wrote:
When I go to "www.mybox.com/smokeping http://www.mybox.com/smokeping", all I get is a list of files, not the webpage I would expect to get.
What might I be doing wrong?
apache isn't real fond of symbolic links unless you add Directory primitives for the real directory. actually, I'd blow off the symlink entirely, and instead use something like...
/etc/httpd/conf.d/smokering.conf: Alias /smokering/ /usr/local/smokering/htdocs/ <Directory /usr/local/smokering/htdocs> AllowOverride All Options MultiViews All
</Directory>
(adjusting the privileges as needed inside that <Directory> block...)
I rm'd the sym link and put that (exactly) along with
order deny, allow deny from all allow from all
I still cannot get in. Is this an Apache issue? (I suppose that I don't understand how these directory definitions work very well)