I'm trying to set up wildcard subdomain to access user's blog of my application with url like: "user.blog.dev".
But all I get is an error "Connection timed out". I have no problems when I go to "blog.dev"
Here is my host file
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 bloggus.dev
My httpd-vhosts.conf
<VirtualHost *:80>
DocumentRoot "/Applications/MAMP/htdocs/BlogCreator/public"
ServerName bloggus.dev
ServerAlias *.bloggus.dev
</VirtualHost>
I appreciate your help as I'm getting so crazy with this, my conf just look like what I found on the internet I don't see any mistakes.