View previous topic :: View next topic |
Author |
Message |
Mallrats Guru


Joined: 15 Jul 2002 Posts: 414 Location: Cleveland Ohio
|
Posted: Mon Dec 29, 2003 8:01 pm Post subject: Apache not serving to anyone but me |
|
|
I'm making a webpage. It looks great! But nobody else can see my web page!
I'm not behind a router
Try it yourself at http://68.233.161.84 (for now)
Thanks! _________________ BitWise Chat |
|
Back to top |
|
 |
Tazmanian Apprentice


Joined: 01 Jul 2003 Posts: 222
|
Posted: Mon Dec 29, 2003 9:53 pm Post subject: Re: Apache not serving to anyone but me |
|
|
Mallrats wrote: | I'm making a webpage. It looks great! But nobody else can see my web page!
I'm not behind a router |
You really ought to give us more information than that. What version of Apache are you using? What does your apache conf file look like?
In any case, perhaps your Listen directive is misconfigured? |
|
Back to top |
|
 |
schism39401 Tux's lil' helper


Joined: 13 Mar 2003 Posts: 130
|
Posted: Mon Dec 29, 2003 10:02 pm Post subject: |
|
|
also do you have a firewall and if so is port 80 open? |
|
Back to top |
|
 |
khel Tux's lil' helper


Joined: 07 Mar 2003 Posts: 80
|
Posted: Mon Dec 29, 2003 10:06 pm Post subject: |
|
|
Also, it's quite possible that your ISP blocks port 80 (like charter for ex.)
So, you may have to run it on a different port.
khel _________________ If it's stupid but works, it isn't stupid.
Using Gentoo? Help the others! |
|
Back to top |
|
 |
Mallrats Guru


Joined: 15 Jul 2002 Posts: 414 Location: Cleveland Ohio
|
Posted: Mon Dec 29, 2003 10:23 pm Post subject: |
|
|
Thanks for the concern guys, the problem is that my ISP (Adelphia) blocks port 80 from being a server port _________________ BitWise Chat |
|
Back to top |
|
 |
Tazmanian Apprentice


Joined: 01 Jul 2003 Posts: 222
|
Posted: Mon Dec 29, 2003 10:26 pm Post subject: |
|
|
Mallrats wrote: | Thanks for the concern guys, the problem is that my ISP (Adelphia) blocks port 80 from being a server port |
Grrr...shupid ISPs thinking they know what's best for us..... ::shakes fist:: |
|
Back to top |
|
 |
schism39401 Tux's lil' helper


Joined: 13 Mar 2003 Posts: 130
|
Posted: Mon Dec 29, 2003 10:32 pm Post subject: |
|
|
tazmanian wrote: | Mallrats wrote: | Thanks for the concern guys, the problem is that my ISP (Adelphia) blocks port 80 from being a server port |
Grrr...shupid ISPs thinking they know what's best for us..... ::shakes fist:: |
lol...damn right!!!
Mallrats: just go to a different port that is what I have done...My ISP doesn't block 80 I just don't want all the damn port scanning traffic...  |
|
Back to top |
|
 |
Mallrats Guru


Joined: 15 Jul 2002 Posts: 414 Location: Cleveland Ohio
|
Posted: Mon Dec 29, 2003 10:38 pm Post subject: |
|
|
schism39401 wrote: | Mallrats: just go to a different port that is what I have done...My ISP doesn't block 80 I just don't want all the damn port scanning traffic...  | Cool, but how _________________ BitWise Chat |
|
Back to top |
|
 |
khel Tux's lil' helper


Joined: 07 Mar 2003 Posts: 80
|
Posted: Mon Dec 29, 2003 11:04 pm Post subject: |
|
|
Mallrats wrote: | schism39401 wrote: | Mallrats: just go to a different port that is what I have done...My ISP doesn't block 80 I just don't want all the damn port scanning traffic...  | Cool, but how |
I sent you PM
Just in case anybody else is interested:
in your apache configuration file add
Listen 8008 (or any other high port number)
Quote: |
### IP Address/Port
###
#BindAddress *
Listen 80
Listen 8008
| (that's what I have on my system)
and restart apache.
Other people should be able to connect to your server using url like
h t t p : / / w w w.yourdomain.com:8008
Or you can setup redirection (I used no-ip.com for this) so that they wouldn't have to type 8008
Hope that helps
khel _________________ If it's stupid but works, it isn't stupid.
Using Gentoo? Help the others!
Last edited by khel on Mon Dec 29, 2003 11:22 pm; edited 1 time in total |
|
Back to top |
|
 |
Jonbond n00b


Joined: 22 Apr 2003 Posts: 23 Location: Manassas, VA
|
Posted: Mon Dec 29, 2003 11:10 pm Post subject: |
|
|
Mallrats wrote: | schism39401 wrote: | Mallrats: just go to a different port that is what I have done...My ISP doesn't block 80 I just don't want all the damn port scanning traffic...  | Cool, but how |
i dont think u stated what version of apache but for apache-1.**
you would edit the apache.conf
i believe u would need to edit this
Code: | ###
### IP Address/Port
###
#BindAddress *
Port 80
Listen 80
|
and if you running multiple sites u will need to edit the Vhosts.conf _________________ Jonbond |
|
Back to top |
|
 |
schism39401 Tux's lil' helper


Joined: 13 Mar 2003 Posts: 130
|
Posted: Mon Dec 29, 2003 11:28 pm Post subject: |
|
|
i am running apache2 and have port 81 open...
in /etc/apache2/conf/apache2.conf i have the following
Code: | ###
### IP Address/Port
###
#BindAddress *
Listen 81
|
works like a charm...very little traffic...most of which is from people i have given the address... |
|
Back to top |
|
 |
|