So I am pretty new to webservers in general. I setup my own on CentOS pretty easily, but now that I am trying out Windows Server 2012 using WAMP I am having some trouble accessing the server from external computers, and other computers in my network.
I installed WAMP, and did some configuration of httpd.conf. My routers ports are forwarded already as I just had a webserver setup on this PC using the same internal IP (192.168.0.3). On the server I can go to localhost and see the site, or I can go to 192.168.0.3 and see the site. Going to the server's domain does not work. From computers within my network, going to 192.168.0.3 does not work either. Does anyone have any idea what could be causing this? I feel like there may be some incorrect configuration on the httpd.conf, so the things I changed are ...
ServerName http://[domain name removed].com
...
Listen *:80
...
<Directory />
AllowOverride none
Require all granted
</Directory>
Any suggestions would be great.