• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Why wont this apache virtualhost work?

Red Squirrel

No Lifer
I have this in my apache config:

Code:
<virtualhost *:80>
servername redirect.ut3.uovalor.com
serveralias redirect.ut3.uovalor.ca
documentroot /home/ut3user/ut3server/ut3-dedicated/Redirect

<directory />
options +indexes
allowoverride all
allow from all
</directory>

</virtualhost>

It used to work, and now suddenly it wont work. In the error log I get this:

Code:
[Tue Jul 10 23:08:11 2012] [error] [client 208.90.242.67] Directory index forbidden by Options directive: /home/ut3user/ut3server/ut3-dedicated/UTGame/

Which is false, as clearly it is +indexes not -indexes. Why is it doing this. Oddly, it's showing the CentOS welcome page, normally it should just show "forbidden". Something is fishy here. All the other virtualhosts work ok.
 
CaSeSensitivity?
Code:
<VirtualHost *:80>
        ServerName blah.blah
        DocumentRoot /blah/blah
        <Directory />
 
Back
Top