0
Hello to all!
I have two computers:
- Windows 7;
- Windows Server 2012.
My site is in the xampp of windows server 2012, and I want to access it through windows 7.
I have tried searching the browser for the IP, by the name of Windows Server 2012, and also tried searching for the Namediindowsserver.NomeDaEmpresa.com but the error is always the same:
ERR_CONECTION_TIMED_OUT
I wonder what I need to configure in Xampp, or even in Windows Server 2012 to be able to fix this error.
Thanks in advance!
The server has to be configured to accept external connections within the network, at port 80, which by default is the one that XAMPP uses, but may be different, you have to confirm in XAMPP.
– Leite
@Milk How do I set up shampoos to accept external connections?
– Daniel Castro
Seeks the
httpd.conf
shaman, there has to be a line that says somethingListen 80
, I think xampp should already be configured to accept requests, but you can confirm. The server can have firewall? Control Panel > Firewall, if it is and is active, you need to set exceptions for port 80.– Leite
@Milk Yes appears Listen 80, and regarding the firewall, I’ve turned off, what do you think it might be?
– Daniel Castro
There must be something
ServerName localhost:80
in the httpd.conf, What value do you have? If it islocalhost
, switches to be the server IP, e.g.ServerName 192.168.10.10:80
– Leite
THANKS!!!! I MANAGED TO SOLVE!! I tried to solve this a couple of weeks ago, it worked really thank you very much!
– Daniel Castro