I have a problem with apache2 on localhost and PHP 5.5.8. on Macosx Everything is installed with Homebrew.
What could be the cause of the delay? When I want to stop the server, it sometimes responds with
httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.43.114 for ServerName
this is how I set it up
<VirtualHost *:80>
    ServerAdmin webmaster@test.dev  
    DocumentRoot "/Users/redres/Webdev/testsetup/public"
    ServerName test.dev
    ServerAlias test.dev
    <Directory "/Users/redres/Webdev/testsetup/public">
       Options FollowSymLinks Indexes MultiViews
       Options All
       AllowOverride All
       Order allow,deny
       Allow from All
       Header Set Cache-Control no-cache
    </Directory>
</VirtualHost>
 
     
    