Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create VirtualHosts on Mac OS 10.7 and therefore I edited the /etc/apache2/httpd.conf. I uncommented the line "Include /private/etc/apache2/extra/httpd-vhosts.conf" to include the virtual hosts. In the file /private/etc/apache2/extra/httpd-vhosts.conf I wrote the following:

NameVirtualHost *:80

<VirtualHost *:80>
    DocumentRoot "/var/www"
    ServerName localhost
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "/var/www/someFolder"
    ServerName myApplication.dev
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "/var/www/someOhterFolder"
    ServerName myApplication2.dev
</VirtualHost>

There were two example virtual hosts before which I deleted. In my /etc/hosts file I added the following:

127.0.0.1 myApplication.dev
127.0.0.1 myApplication2.dev

I restarted my Apache and typed myApplication.dev and myApplication2.dev in the browser but I get an error "server not found" and it makes www.myApplication.dev in the browser (the same for myApplication2.dev).

Did I forget something to configure? I activated PHP in httpd.conf, mysql is installed also, but that has nothing to do with virtual hosts, I think. Thanks for your help!

share|improve this question
This sounds more like a problem with the /etc/hosts entries than the apache config. What happens if you try to ping myApplication.dev? – Gordon Davisson May 5 '12 at 18:14
If I ping it I get a correct answer, so it works. – tester May 6 '12 at 14:51

3 Answers

Are you using an HTTP proxy? If so, make an exception for myApplication.dev and myApplication2.dev.

What I meant was that the problem "server mot found" means that your browser cannot find the ip adresses of the hosts "myapplication.dev". This may be because you're using an http proxy, possibly one configured by your hosting company. In any case, you don't even reach the server, so you never get to try the virtual host configuration at all.

To just try the virtual host configuration, you can use telnet in a Terminal window and talk HTTP directly to the server, like this:

yourmacbox:~ yourname$ telnet 127.0.0.1 80

You should see the following text:

Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.

Then you type

GET / HTTP/1.0
Host: myApplication.dev

Now, hopefully you should see some response from your web server. This shows that once you can connect to it, the virtual hosts things works.

share|improve this answer
1  
I just have a normal MacBook Pro with the standard configuration from installation. So there are no HTTP proxies configured. Or do you mean something else? – tester May 7 '12 at 18:05
I am having this same problem. I was able to use this Host: trick with telnet to get the expected response. Though I had to type Control-D to finish the request. I am able to ping the host, so the entry in /etc/hosts is correct, but I still can’t access it in a browser. I don’t think there’s a proxy running, is there any way I could detect that from the command line? – Buck Doyle May 10 '12 at 12:52
The proxy doesn't have to be running on your own system - it may be that your internet provider has a setup that makes your web browser use the provider's proxy. You can check that in the Preferences for your browser, usually somewhere in the Network settings. – Jenny D May 10 '12 at 12:56
Hmm. It’s happening even when I try it with lynx, which I’d be surprised to learn paid attention to the OS proxy settings. But thanks for the telnet trick, it at least let me confirm the application is working, even if I can’t access it as I need to. Isn’t it strange that I can`t do telnet [hostname] 80 though? It’s as if Apache isn’t listening on *, but it seems to be in the configuration… – Buck Doyle May 13 '12 at 1:07
If you can't do telnet "hostname", then it's your DNS setup that isn't working, since none of your applications can find the hostname. (Yes, lynx does understand http proxies - if you've one assigned from your ISP, it will end up in your environment variables and lynx will use it.) – Jenny D May 13 '12 at 6:47

I had the same problem, and noticed that the ServerRoot "/usr" was set as shown and incorrectly after the 10.7 upgrade. The httpd.conf file was still under /etc/apache2, but this setting in it was pointing to the wrong place. Once I had fixed that by changing to ServerRoot "/etc/apache2", all my previous virtual host configuration got picked up properly.

I also had to re-enable virtual hosts by uncommenting line 477 as mentioned here http://brettterpstra.com/fixing-virtual-hosts-and-web-sharing-in-mountain-lion/ That didn't quite kick in until I had fixed the path issue above.

share|improve this answer

I had the exact same problem using OS X Lion. I fixed it by adding "::1 myhost.dev" to /etc/hosts:

127.0.0.1 myhost.dev
::1 myhost.dev

Incidentally, the ::1 also fixes a bug that makes page loading very slow on virtual hosts served from the Mac.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.