Error configuring virtual hosts with Apache on Windows 8 [on hold]
- by rushd
I can't get virtual host to work on my Windows 8. I restart, stop, start Apache, but I get a popup dialog that says: The requested operation has failed! I know it's the line that produces the error, but how can I enable vhost if I don't uncomment the line in httpd.conf?
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
The only thing I did was edited C:\Apache24\conf\httpd.conf by removing the comment on Include conf/extra/httpd-vhosts.conf and edited the file located in C:\Apache24\conf\extra\httpd-vhost.conf.
Apache is installed in C:\Apache24
Directory I want to use for Virtual Host is located at C:\Users\TomCODE\brainprojects
My vhost.conf looks like this:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName brain.local
DocumentRoot "C:/Users/TomCODE/brainprojects"
ErrorLog "logs/brain.local-error.log"
CustomLog "logs/local.local-access.log" common
</VirtualHost>
My hosts file:
127.0.0.1 brain.local
I downloaded the file httpd-2.4.9-win64-VC11 from Apache Lounge.