As the title implies, I am trying to set up an Apache web server on FreeBSD. Apache seems to be installed correctly, as it displays the default page with my IP address.
The problem is that my address doesn't seem to work outside of my local network. When I type [edited] in my browser, it shows the default Apache page, while it does not when I type the same thing on another computer in my network. Ping does not detect anything on the other computer, while it returns 127.0.0.1 on mine.
My browser displays the Apache page when I type my local IP address or 127.0.0.1, but does not work with localhost. It works on the other computers on the network when I type my local IP address (192.168.0.102).
My hosts config is:
::1 localhost localhost.my.domain
127.0.0.1 laukev7 [edited]
192.168.0.102 [edited] laukev7
I am behind a router, and have configured my virtual server HTTP with:
Private IP: 192.168.0.102
Protocol: TCP 80/80
Is there something I am missing here? I am just starting to learn about web servers. Any help will be appreciated.