in reply to Re: (OT) Webserver settings
in thread (OT) Webserver settings

I tried this but it does not work, Thanks

Replies are listed 'Best First'.
Re^3: (OT) Webserver settings
by johnnywang (Priest) on Sep 06, 2005 at 17:46 UTC
    If you can access it via localhost but not via your ip address, it mostlikely means your server is binding to 127.0.0.1 instead of any. Take a look at http.conf, you probably had "Listen 127.0.0.1:8080", change that to "Listen 8080", you can then access it via your ip address.
      Thank you very much. Rightly pointed and it works now. Thanks NLC