/ Zope / Apsis / Pound Mailing List / Archive / 2010 / 2010-03 / How to change catch all to specific URL?

[ << ] [ >> ]

[ pound failing to load valid CAcert in CAfile ... ] [ Allow unsanitized requests for openvpn? / Matt ... ]

How to change catch all to specific URL?
"Anne Moore" <diabeticithink(at)yahoo.com>
2010-03-29 19:25:49 [ SNIP ]
Greetings all
 
I have a pound server that I need to load balance between two backend
servers. 
 
Quick question to see if this is possible:
 
I need the catch all to go to a specific URL on the two backend servers. For
instance, https://hhshelpme.help.com/mcsrr 
 
Is this possible to do with the catch all? Can I re-direct to an HTTPS as
well? (See above URL).
 
Thank you!
 
Anne

Attachments:  
text.html text/html 1761 Bytes

Re: [Pound Mailing List] How to change catch all to specific URL?
Albert <pound(at)alacra.com>
2010-03-29 20:26:44 [ SNIP ]
You should be able to use Redirect directive, ie.:


Service
         Redirect        301     "https://hhshelpme.help.com/mcsrr"
End


On 3/29/2010 1:25 PM, Anne Moore wrote:
> Greetings all
>
> I have a pound server that I need to load balance between two backend
> servers.
>
> Quick question to see if this is possible:
>
> I need the catch all to go to a specific URL on the two backend servers. For
> instance, https://hhshelpme.help.com/mcsrr
>
> Is this possible to do with the catch all? Can I re-direct to an HTTPS as
> well? (See above URL).
>
> Thank you!
>
> Anne
>
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>    

Attachments:  
text.html text/html 1506 Bytes

RE: [Pound Mailing List] How to change catch all to specific URL?
"Anne Moore" <diabeticithink(at)yahoo.com>
2010-03-29 21:06:02 [ SNIP ]
Interesting. 

I tried this, using the information your provided. Seems to be working!
Thank you

Another question if you don't mind.

How do I get the sessions to stick? Whenever I go to my website,
https://hhshelpme.help.com/mcsrr, and then hit "reload" on the browser, it
gives me a different back end server each time.  

Is there anyway to keep the users session to the same server?

Thank you

Anne



-----Original Message-----
From: Albert [mailto:pound(at)alacra.com] 
Sent: Monday, March 29, 2010 2:27 PM
To: pound(at)apsis.ch
Subject: Re: [Pound Mailing List] How to change catch all to specific URL?

You should be able to use Redirect directive, ie.:


Service
         Redirect        301     "https://hhshelpme.help.com/mcsrr"
End


On 3/29/2010 1:25 PM, Anne Moore wrote:
> Greetings all
>
> I have a pound server that I need to load balance between two backend 
> servers.
>
> Quick question to see if this is possible:
>
> I need the catch all to go to a specific URL on the two backend 
> servers. For instance, https://hhshelpme.help.com/mcsrr
>
> Is this possible to do with the catch all? Can I re-direct to an HTTPS 
> as well? (See above URL).
>
> Thank you!
>
> Anne
>
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>    


--
To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
Please contact roseg(at)apsis.ch for questions.


Re: [Pound Mailing List] How to change catch all to specific URL?
Albert <pound(at)alacra.com>
2010-03-29 21:45:16 [ SNIP ]
Pound has different options for session handling.  I like to use IP type 
(IP address of the client), but there are other options (you can read 
the man pages).  Inside your "Service" directive, you'd need to put the 
following (this is 60 second session tracking, your might want to 
increase/decrease it based on your requirements):

Session
         Type    IP
         TTL     60
End



On 3/29/2010 3:06 PM, Anne Moore wrote:
> Interesting.
>
> I tried this, using the information your provided. Seems to be working!
> Thank you
>
> Another question if you don't mind.
>
> How do I get the sessions to stick? Whenever I go to my website,
> https://hhshelpme.help.com/mcsrr, and then hit "reload" on the browser, it
> gives me a different back end server each time.
>
> Is there anyway to keep the users session to the same server?
>
> Thank you
>
> Anne
>
>
>
> -----Original Message-----
> From: Albert [mailto:pound(at)alacra.com]
> Sent: Monday, March 29, 2010 2:27 PM
> To: pound(at)apsis.ch
> Subject: Re: [Pound Mailing List] How to change catch all to specific URL?
>
> You should be able to use Redirect directive, ie.:
>
>
> Service
>           Redirect        301     "https://hhshelpme.help.com/mcsrr"
> End
>
>
> On 3/29/2010 1:25 PM, Anne Moore wrote:
>    
>> Greetings all
>>
>> I have a pound server that I need to load balance between two backend
>> servers.
>>
>> Quick question to see if this is possible:
>>
>> I need the catch all to go to a specific URL on the two backend
>> servers. For instance, https://hhshelpme.help.com/mcsrr
>>
>> Is this possible to do with the catch all? Can I re-direct to an HTTPS
>> as well? (See above URL).
>>
>> Thank you!
>>
>> Anne
>>
>>
>> --
>> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
>> Please contact roseg(at)apsis.ch for questions.
>>
>>
>>      
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>    

Attachments:  
text.html text/html 3398 Bytes

RE: [Pound Mailing List] How to change catch all to specific URL?
"Anne Moore" <diabeticithink(at)yahoo.com>
2010-03-29 22:12:15 [ SNIP ]
You are the man. Thank you!

Anne 

-----Original Message-----
From: Albert [mailto:pound(at)alacra.com] 
Sent: Monday, March 29, 2010 3:45 PM
To: pound(at)apsis.ch
Subject: Re: [Pound Mailing List] How to change catch all to specific URL?

Pound has different options for session handling.  I like to use IP type (IP
address of the client), but there are other options (you can read the man
pages).  Inside your "Service" directive, you'd need to put the following
(this is 60 second session tracking, your might want to increase/decrease it
based on your requirements):

Session
         Type    IP
         TTL     60
End



On 3/29/2010 3:06 PM, Anne Moore wrote:
> Interesting.
>
> I tried this, using the information your provided. Seems to be working!
> Thank you
>
> Another question if you don't mind.
>
> How do I get the sessions to stick? Whenever I go to my website, 
> https://hhshelpme.help.com/mcsrr, and then hit "reload" on the 
> browser, it gives me a different back end server each time.
>
> Is there anyway to keep the users session to the same server?
>
> Thank you
>
> Anne
>
>
>
> -----Original Message-----
> From: Albert [mailto:pound(at)alacra.com]
> Sent: Monday, March 29, 2010 2:27 PM
> To: pound(at)apsis.ch
> Subject: Re: [Pound Mailing List] How to change catch all to specific URL?
>
> You should be able to use Redirect directive, ie.:
>
>
> Service
>           Redirect        301     "https://hhshelpme.help.com/mcsrr"
> End
>
>
> On 3/29/2010 1:25 PM, Anne Moore wrote:
>    
>> Greetings all
>>
>> I have a pound server that I need to load balance between two backend 
>> servers.
>>
>> Quick question to see if this is possible:
>>
>> I need the catch all to go to a specific URL on the two backend 
>> servers. For instance, https://hhshelpme.help.com/mcsrr
>>
>> Is this possible to do with the catch all? Can I re-direct to an 
>> HTTPS as well? (See above URL).
>>
>> Thank you!
>>
>> Anne
>>
>>
>> --
>> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
>> Please contact roseg(at)apsis.ch for questions.
>>
>>
>>      
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>    


--
To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
Please contact roseg(at)apsis.ch for questions.


Re: [Pound Mailing List] How to change catch all to specific URL?
Andreas Schipplock <andreas(at)schipplock.de>
2010-03-29 22:21:05 [ SNIP ]
he is he-man -> http://www.serienoldies.de/images2/heman_heman1.jpg

Sorry :P.

Kind regards,
Andreas Schipplock.



On Mon, Mar 29, 2010 at 10:12 PM, Anne Moore <diabeticithink(at)yahoo.com>
wrote:
> You are the man. Thank you!
>
> Anne
>
> -----Original Message-----
> From: Albert [mailto:pound(at)alacra.com]
> Sent: Monday, March 29, 2010 3:45 PM
> To: pound(at)apsis.ch
> Subject: Re: [Pound Mailing List] How to change catch all to specific URL?
>
> Pound has different options for session handling.  I like to use IP type (IP
> address of the client), but there are other options (you can read the man
> pages).  Inside your "Service" directive, you'd need to put the following
> (this is 60 second session tracking, your might want to increase/decrease it
> based on your requirements):
>
> Session
>         Type    IP
>         TTL     60
> End
>
>
>
> On 3/29/2010 3:06 PM, Anne Moore wrote:
>> Interesting.
>>
>> I tried this, using the information your provided. Seems to be working!
>> Thank you
>>
>> Another question if you don't mind.
>>
>> How do I get the sessions to stick? Whenever I go to my website,
>> https://hhshelpme.help.com/mcsrr, and then hit "reload" on the
>> browser, it gives me a different back end server each time.
>>
>> Is there anyway to keep the users session to the same server?
>>
>> Thank you
>>
>> Anne
>>
>>
>>
>> -----Original Message-----
>> From: Albert [mailto:pound(at)alacra.com]
>> Sent: Monday, March 29, 2010 2:27 PM
>> To: pound(at)apsis.ch
>> Subject: Re: [Pound Mailing List] How to change catch all to specific URL?
>>
>> You should be able to use Redirect directive, ie.:
>>
>>
>> Service
>>           Redirect        301     "https://hhshelpme.help.com/mcsrr"
>> End
>>
>>
>> On 3/29/2010 1:25 PM, Anne Moore wrote:
>>
>>> Greetings all
>>>
>>> I have a pound server that I need to load balance between two backend
>>> servers.
>>>
>>> Quick question to see if this is possible:
>>>
>>> I need the catch all to go to a specific URL on the two backend
>>> servers. For instance, https://hhshelpme.help.com/mcsrr
>>>
>>> Is this possible to do with the catch all? Can I re-direct to an
>>> HTTPS as well? (See above URL).
>>>
>>> Thank you!
>>>
>>> Anne
>>>
>>>
>>> --
>>> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
>>> Please contact roseg(at)apsis.ch for questions.
>>>
>>>
>>>
>>
>> --
>> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
>> Please contact roseg(at)apsis.ch for questions.
>>
>>
>> --
>> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
>> Please contact roseg(at)apsis.ch for questions.
>>
>>
>
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>
>
> --
> To unsubscribe send an email with subject unsubscribe to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
>

MailBoxer