The-Last-Escape Posted April 29, 2007 Share Posted April 29, 2007 My dad has installed a wireless router and I cannot use the apache server because the router uses the ip address for something how can I solve this ? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted April 30, 2007 Share Posted April 30, 2007 Your probably need to change the IP address Apache runs on and/or the port no. YOu can do this by editing the httpd.conf file (located in the conf/ folder). Scroll down to line 53 which be like this by default: Listen 80 Change 80 to 8080 instead. Save the httpd.conf and restart Apache. Now go to http://localhost:8080 (or whatever ip/adomain address you use) and see if it connects. Note: It is important you append :8080 after the ip/domain name. This tells the browser to communicate to the server via port 8080 and not the default, which is port 80. As you changed the port Apache listens to for tcp/ip requests. Quote Link to comment Share on other sites More sharing options...
The-Last-Escape Posted May 1, 2007 Author Share Posted May 1, 2007 I donot see listen 80 in my document anywhere Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted May 2, 2007 Share Posted May 2, 2007 what does line 53 look like in the httpd.conf? Look for this line: # Listen: Allows you to bind Apache to specific IP addresses and/or now scroll down a few lines until your see Listen xx xx being the port number Apache is listening on. Quote Link to comment Share on other sites More sharing options...
the_oliver Posted May 2, 2007 Share Posted May 2, 2007 Perhaps you just need to set up a port forword rule on your router to point port 80 to your servers internal ip address. Hope that helps. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.