I installed xampp and made sure config file listens to port 80. I forwarded the http port from the router to the correct computer ip. Now I am trying to access the index.html like this from another house http://myip:80 But it is not working. What could it be wrong? httpd.config listens to port 80
feedback
|
|
You're trying to access "from another house" ? So you need some way to tell the world that there is a machine on the Internet (on your local network) that will answer that request, and you've started with forwarding the port - good job. Most people forget that. The DNS needs to be updated with a hostname that resolves to the IP address of the machine where you've installed XAMPP. A free option is to create an account with Dyndns.com, and choose a domain name of your liking. Then download, install and configure their dynamic update client - this will update DNS whenever the IP address of your "server" changes. If you want to access your site from within your own network, its easier to add entries to your hosts file ( Add a line:
where Then, you can access your website with:
If you do decide on a dynamic domain, you can use the same domain name in your hosts file also - like | ||||
|
feedback
|
|
XAMPP is configured by default to respond only to requests on | |||||||
feedback
|