Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Nilesh Govindarajan
On Mon, Mar 1, 2010 at 3:20 AM, Mike Hagerty wrote: > Okay, here is my limited understanding of apache ... > When you set the port to 8000 in /etc/apache/httpd.conf - you are telling > apache to listen on port 8000 > for requests to serve, rather than on the default port (80). > > However, this m

[us...@httpd] Re: How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread LuKreme
On 28-Feb-10 12:56, Mike Hagerty wrote: I want apache to reroute all traffic coming in on the (httpd) default port 80 to port 8000. How do you think apache is going to see any traffic on port 80 when your firewall is blocking port 80? -- She'd always tried to face towards the light. She'd a

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Mike Hagerty
Okay, here is my limited understanding of apache ... When you set the port to 8000 in /etc/apache/httpd.conf - you are telling apache to listen on port 8000 for requests to serve, rather than on the default port (80). However, this means that users must access your site by adding ": 8000" to

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Eric Covener
On Sun, Feb 28, 2010 at 2:56 PM, Mike Hagerty wrote: > I don't know if this is something apache can do (i.e., if it can change the > default port for http://www.mysite.com from 80 to 8000) >  or if I need to accomplish it outside of apache (find some software that > maps port 80 to port 8000) ?

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Eric Covener
On Sun, Feb 28, 2010 at 2:56 PM, Mike Hagerty wrote: > I'm kind of surprised (doubtful) that I would be the first person to ask > this -- other sites that have to use higher ports must wonder if the added > burden of remembering/typing the port no. in the url deters users from > finding their sit

[us...@httpd] advice on compressing multipart via custom HttpClient

2010-02-28 Thread Debbie Walker
I have a custom HTTP client. I want to gzip compress a multipart message and have the apache server decompress it (utilizing SetInputFilter DEFLATE). I tried just gzipping the file in the multipart message but the file is received on the server side compressed. Further research indicated that t

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Mike Hagerty
Hi. As I stated, I am behind a firewall that is controlled remotely, so port 80 is blocked (unless your come in from within our domain). I have successfully run it for several years on port 8000 (any port > 1024 would do) but I would like to have it so that the port number does not need to be

[us...@httpd] memory problems, I lose control of the entire server

2010-02-28 Thread Alvise Nicoletti
Hi. I searched help from several months ago with no success. So I'll repeat again my problem hoping that this time someone will answer. I often (3 times in a month) control of my virtual server, so I have to call the provider to soft-reset it. The problem is that apache takes all the memory and

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Nilesh Govindarajan
On Sun, Feb 28, 2010 at 10:20 PM, Thomas, Peter wrote: > No, there isn't. There are--or were--providers like dyndns that would also > do port and server re-mapping in addition to dynamic DNS aliasing. > > Mike Hagerty wrote: > > Hello. > Forgive me if this has been handled in the Archives. I've

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Thomas, Peter
No, there isn't. There are--or were--providers like dyndns that would also do port and server re-mapping in addition to dynamic DNS aliasing. Mike Hagerty wrote: Hello. Forgive me if this has been handled in the Archives. I've tried searching different key words but I haven't found anything. I

Re: [us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Nilesh Govindarajan
On Sun, Feb 28, 2010 at 9:30 PM, Mike Hagerty wrote: > Hello. > Forgive me if this has been handled in the Archives. I've tried searching > different key words but I haven't > found anything. > > I have an apache server running on port 8000. > This necessitates typing http://www.myaddress.com:800

[us...@httpd] How to map http://www.myaddress.com to http://www.myaddress.com:8000 ?

2010-02-28 Thread Mike Hagerty
Hello. Forgive me if this has been handled in the Archives. I've tried searching different key words but I haven't found anything. I have an apache server running on port 8000. This necessitates typing http://www.myaddress.com:8000 to get to my home page. I would like to be able to drop the

[us...@httpd] Re: Cacthing hosts

2010-02-28 Thread LuKreme
On 28-Feb-10 03:13, Nilesh Govindarajan wrote: On Sun, Feb 28, 2010 at 1:01 AM, LuKreme wrote: On 27-Feb-2010, at 10:17, Nilesh Govindarajan wrote: What if I want all IPs ? What I posted will do what you want. Request to www.example.com will go to the example.com dir, www.example.net will go

Re: [us...@httpd] Force caching of responses with no explicit expiry date, where the request contains a query string

2010-02-28 Thread Eric Covener
On Sun, Feb 28, 2010 at 7:33 AM, Alf Eaton wrote: > On 27 February 2010 04:12, Jonathan Zuckerman wrote: >> On Fri, Feb 26, 2010 at 6:39 AM, Alf Eaton wrote: >>> >>> This seems to be something that's been around for a while, but I >>> haven't been able to find anything conclusive saying that it'

Re: [us...@httpd] Re: Cacthing hosts

2010-02-28 Thread Eric Covener
On Sun, Feb 28, 2010 at 5:13 AM, Nilesh Govindarajan wrote: > You posted which will work for a single IP i.e. 12.34.56.789 > > But what if I have three or four IP addresses on the same Apache server ? > > Your config will handle only that particular IP. > > I think a solution is ServerAlias ? No

Re: [us...@httpd] Force caching of responses with no explicit expiry date, where the request contains a query string

2010-02-28 Thread Alf Eaton
On 27 February 2010 04:12, Jonathan Zuckerman wrote: > On Fri, Feb 26, 2010 at 6:39 AM, Alf Eaton wrote: >> >> This seems to be something that's been around for a while, but I >> haven't been able to find anything conclusive saying that it's >> supposed to work this way: >> >> I'm using Apache 2.

Re: [us...@httpd] Re: Cacthing hosts

2010-02-28 Thread Nilesh Govindarajan
On Sun, Feb 28, 2010 at 1:01 AM, LuKreme wrote: > On 27-Feb-2010, at 10:17, Nilesh Govindarajan wrote: > > > > What if I want all IPs ? > > Your not understanding the function of the first VirtualHost. It is special > as it is the default for anything that doesn't match another VirtualHost. > > W