I'm running a local Apache server for testing purposes, my setup worked just fine until I upgraded to Apache 2.2 and now it refuses to start. I use virtual hosts like this:
<VirtualHost *:80>
ServerName local.test
DocumentRoot "E:/site"
</VirtualHost>
where E: is a DriveCrypt-encrypted partition. (It's fully accessible from file explorer and no other software refuses reading from or writing to it.)
Trying to start Apache will show this message in the Windows event log:
The Apache service named reported the following error:
>>> DocumentRoot must be a directory
It only seems to accept c:\ paths. Having sections to set permissions isn't allowed either:
The Apache service named reported the following error:
>>> Syntax error on line 197 of C:/prog/Apache/conf/httpd.conf: .
The Apache service named reported the following error:
>>> <Directory "d:/"> path is invalid. .
How can I fix this?
PS: I'm not allowed to tag this with "drivecrypt" because I'm a new user on superuser - perhaps somebody else can?