Basically i've been using EasyPHP for setting up an website for work, everything works fine except that i can't access my website from another computer, not even from my own if using my own IP.
If i use either localhost or 127.0.0.1 i can access my site just fine, but using my ip 192.168.25.65 will return an 404 error. Trying to access it in another machine using my IP will also return the 404 error.
I've been trying several solutions. Most of the make it so my http server won't start. Currently my configs are
Listen *:80
<VirtualHost 192.168.25.65>
DocumentRoot "C:/EasyPHP-Devserver-17/eds-www"
ServerName 192.168.25.65
<Directory "C:/EasyPHP-Devserver-17/eds-www">
Options FollowSymLinks Indexes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
#Deny from all
Require all granted
</Directory>
</VirtualHost>
I've tryed changing the ips on virtual host to * instead of my own but it made it so that the Http server wouldn't start. I can't find any other solutions on google since all other people seem to have issues with firewall blocking which returns the connection refused error, mine just tells me that there isn't anthing at my IP, even tho there is.
I'm looking for a solution for this problem, being it in the http.conf file or anything else, if I forgot to mention any information that you think is needed please inform me and i'll include it.