/ Zope / Apsis / Pound Mailing List / Archive / 2006 / 2006-09 / Re: [Pound Mailing List] heavy-loaded site

[ << ] [ >> ]

[ heavy-loaded site / Maciej Bogucki ... ] [ PLEASE TURN OFF RETURN RECEIPT REQUESTS! / Ed R ... ]

Re: [Pound Mailing List] heavy-loaded site
Sean Gabriel Heacock <gabriel(at)korsoft.com>
2006-09-01 18:05:58 [ SNIP ]
On Fri, 2006-09-01 at 15:47 +0200, Maciej Bogucki wrote:
> We have heavy-loaded site, and before application server is pound :) It 
> has been working good few years, but now we have much more 
> traffic(req/s), and we get often 'pound: HTTP accept: Too many open 
> files' in the log and 503 to client.
> It isn't problem with ulimit because we set high ulimit for nofile, and 
> we start pound like this:

I've run into this in apache - it's probably FD_SETSIZE, which usually
defaults to 1024.  I've found that I have to raise that and recompile as
well as using ulimit.  It's defined in /usr/include/bits/typesizes.h on
my system.

-- 
Sean Gabriel Heacock
Telana Internet Services
http://www.telana.com/


Re: [Pound Mailing List] Ubuntu packages i386
Robert Segall <roseg(at)apsis.ch>
2006-09-01 18:15:15 [ SNIP ]
On Fri, 2006-09-01 at 14:19 +0200, dirk dekker wrote:
> Hello Robert Segall,
> I found pound version 1.9-1 in the ubunti packages:
> http://packages.ubuntu.com/cgi-bin/search_contents.pl?searchmode=filelist
> <http://packages.ubuntu.com/cgi-bin/search_contents.pl?searchmode=filelist&w
> ord=pound&version=dapper&arch=i386> &word=pound&version=dapper&arch=i386
>  
> When will the latest version: 2.1 on his list be updates?
>  
> Thanks
>  
> Dirk Dekker

You'll have to ask the Ubuntu people - we have nothing to do with it.
-- 
Robert Segall
Apsis GmbH
Postfach, Uetikon am See, CH-8707
Tel: +41-44-920 4904


Re: [Pound Mailing List] heavy-loaded site
Robert Segall <roseg(at)apsis.ch>
2006-09-01 18:21:20 [ SNIP ]
On Fri, 2006-09-01 at 10:05 -0600, Sean Gabriel Heacock wrote:
> On Fri, 2006-09-01 at 15:47 +0200, Maciej Bogucki wrote:
> > We have heavy-loaded site, and before application server is pound :) It 
> > has been working good few years, but now we have much more 
> > traffic(req/s), and we get often 'pound: HTTP accept: Too many open 
> > files' in the log and 503 to client.
> > It isn't problem with ulimit because we set high ulimit for nofile, and 
> > we start pound like this:
> 
> I've run into this in apache - it's probably FD_SETSIZE, which usually
> defaults to 1024.  I've found that I have to raise that and recompile as
> well as using ulimit.  It's defined in /usr/include/bits/typesizes.h on
> my system.

Sorry, but this is very unlikely. Pound has moved from select() to
poll() a long time ago precisely in order to avoid these problems.

As to the OP: I don't really know, but I suspect you start Pound with
the wrong ulimit. Why don't you try printing out the ulimit from within
Pound itself and see what it says (or at least use ulimit in your start
script for an indication)?
-- 
Robert Segall
Apsis GmbH
Postfach, Uetikon am See, CH-8707
Tel: +41-44-920 4904


RE: [Pound Mailing List] Ubuntu packages i386
"Hennie Dekker" <hf.dekker(at)chello.nl>
2006-09-01 19:34:15 [ SNIP ]
Hello Robert ,
Thanks!
I have forwarde it now to : nobse(at)debian.org
Dirk

-----Oorspronkelijk bericht-----
Van: Robert Segall [mailto:roseg(at)apsis.ch] 
Verzonden: vrijdag 1 september 2006 18:15
Aan: pound(at)apsis.ch
Onderwerp: Re: [Pound Mailing List] Ubuntu packages i386

On Fri, 2006-09-01 at 14:19 +0200, dirk dekker wrote:
> Hello Robert Segall,
> I found pound version 1.9-1 in the ubunti packages:
> http://packages.ubuntu.com/cgi-bin/search_contents.pl?searchmode=filel
> ist 
> <http://packages.ubuntu.com/cgi-bin/search_contents.pl?searchmode=file
> list&w ord=pound&version=dapper&arch=i386> 
> &word=pound&version=dapper&arch=i386
>  
> When will the latest version: 2.1 on his list be updates?
>  
> Thanks
>  
> Dirk Dekker

You'll have to ask the Ubuntu people - we have nothing to do with it.
--
Robert Segall
Apsis GmbH
Postfach, Uetikon am See, CH-8707
Tel: +41-44-920 4904


-- 
To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
Please contact roseg(at)apsis.ch for questions.
http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1157126758000/1157
127315000


Re: [Pound Mailing List] heavy-loaded site
Ted Dunning <tdunning(at)veoh.com>
2006-09-01 19:42:56 [ SNIP ]

Regardless of this limitation on the number of sockets, you will probably
run into problems before long with loading.

You may need to investigate TCP level load balancing between multiple
instances of pound on separate machines.  In preparation for this, you may
want to look at making sure that you can do without sticky sessions.  IP
based load balancing may suit your needs and it is much more likely to work
with multiple pounds in front of your applications.


On 9/1/06 6:47 AM, "Maciej Bogucki" <maciej.bogucki(at)artegence.com> wrote:

> Hello,
> 
> We have heavy-loaded site, and before application server is pound :) It
> has been working good few years, but now we have much more
> traffic(req/s), and we get often 'pound: HTTP accept: Too many open
> files' in the log and 503 to client.
> It isn't problem with ulimit because we set high ulimit for nofile, and
> we start pound like this:
> 
> /usr/sbin/softlimit -o 16384 /usr/bin/pound -f /etc/pound/pound.cfg
> 
> There is also high kernel limit for threads
> 
>> cat /proc/sys/kernel/threads-max
> 16384
>> 
> 
> We can only achieve 512 pound threads, and lsof shows 1053 open
> files(pound uses 29 files for itself).
> So the limit is 1024, but I don't know where.
> 
> Any idea?
> 
> Best Regards
> Maciej Bogucki


RE: [Pound Mailing List] Ubuntu packages i386
Jeffrey Brown <jbrown(at)camsys.com>
2006-09-01 19:47:05 [ SNIP ]
Return Receipt
                                                                           
   Your       RE: [Pound Mailing List] Ubuntu packages i386                
   document:                                                               
                                                                           
   was        jbrown(at)camsys.com                                            
   received                                                                
   by:                                                                     
                                                                           
   at:        09/01/2006 01:47:04 PM                                       
                                                                           



Attachments:  
text.html text/html 685 Bytes

Re: [Pound Mailing List] Private pound.
Robert Segall <roseg(at)apsis.ch>
2006-09-06 18:51:01 [ SNIP ]
On Wed, 2006-09-06 at 10:02 +0200, Olivier Rossel wrote:
> I am using Pound as a HTTPS frontend for my secured website.
> I have read an interesting article about Apache and its "client
> authentication using client certificates":
> 
> http://www.securityfocus.com/infocus/1823
> 
> This article describes how to set up Apache to accept only connections
> from clients that own a specific certificate.
> So only trusted persons (ie. persons who have that certificate on
> their web client) can access the website.
> 
> Does Pound have that feature?

Yes. See the ClientCert option.
-- 
Robert Segall
Apsis GmbH
Postfach, Uetikon am See, CH-8707
Tel: +41-44-920 4904


Re: [Pound Mailing List] Pound failover
gauze(at)dropdead.org
2006-09-10 16:21:10 [ SNIP ]
Quoting aT <pakistan(at)gmail.com>:

> Hi ,
>
> Pound provides  great fail over and load balancing aspect to web sites.
> But how people are making Pound redundant ?
> I mean if i have a single pound server serving requests and this one
> fails , is there a way of automatically shifting load to another pound ?
> is DNS round robin  the only solution ?

linux-ha stuff would be a solution I guess

we just have a redundant server on hot stand by I can "flip on" by  
running a shell script if the first one goes down. we have nagios  
monitoring server health. not very high tech.

>
> Regards
>
>
> -- 
> Syed Atif Ali
> D. +971 4 3911914
> F. +971 4 3911915
> ___________________________________________ Your lucky number is
> 3552664958674928.  Watch for it everywhere.
>
>
> -- 
> To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
> http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1157896883000




Re: [Pound Mailing List] Pound failover
Falk Brockerhoff <noc(at)smartterra.de>
2006-09-10 18:53:19 [ SNIP ]
Hi,

actualy we're running two FreeBSD-Boxes with carp configured fpr
fail-over. On both machines pound is running with an equal configuration.

In the near future we will migrate to OpenBSD because of some strange
behaviors with the carp-implementation on FreeBSD. I would like to see a
failover-mechanism with HA-Beat and session takeover, but the actual
setup is better than nothing :)

Regards,

Falk Brockerhoff


RE: [Pound Mailing List] Pound failover
"Dean" <deanmaunder(at)telstra.com>
2006-09-11 07:56:59 [ SNIP ]
We use heartbeat (www.ultramonkey.org)  to provide a virtual IP for pound to
run on two separate servers.


-----Original Message-----
From: aT [mailto:pakistan(at)gmail.com] 
Sent: Monday, 11 September 2006 12:01 AM
To: pound(at)apsis.ch
Subject: [Pound Mailing List] Pound failover

Hi ,

Pound provides  great fail over and load balancing aspect to web sites.
But how people are making Pound redundant ?
I mean if i have a single pound server serving requests and this one fails ,
is there a way of automatically shifting load to another pound ?
is DNS round robin  the only solution ?

Regards


--
Syed Atif Ali
D. +971 4 3911914
F. +971 4 3911915
___________________________________________
Your lucky number is 3552664958674928.  Watch for it everywhere.


--
To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
Please contact roseg(at)apsis.ch for questions.
http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1157896883000


RE: [Pound Mailing List] Pound failover
"John Snowdon" <J.P.Snowdon(at)newcastle.ac.uk>
2006-09-11 12:02:16 [ SNIP ]
I'd be interested to hear further information on this setup - it's
something I will be attempting shortly to move away from the 'pound as
single point of failure' situation at present.

How do you manage your pound configuration and restarts across the
multiple servers?

 John Snowdon - IT Support Specialist
-==========================================-
 School of Medical Education Development 
 Faculty of Medical Sciences Computing
 University of Newcastle


>-----Original Message-----
>From: Dean [mailto:deanmaunder(at)telstra.com] 
>Sent: 11 September 2006 06:57
>To: pound(at)apsis.ch
>Subject: RE: [Pound Mailing List] Pound failover
>
>
>We use heartbeat (www.ultramonkey.org)  to provide a virtual 
>IP for pound to
>run on two separate servers.
>
>
>-----Original Message-----
>From: aT [mailto:pakistan(at)gmail.com] 
>Sent: Monday, 11 September 2006 12:01 AM
>To: pound(at)apsis.ch
>Subject: [Pound Mailing List] Pound failover
>
>Hi ,
>
>Pound provides  great fail over and load balancing aspect to web sites.
>But how people are making Pound redundant ?
>I mean if i have a single pound server serving requests and 
>this one fails ,
>is there a way of automatically shifting load to another pound ?
>is DNS round robin  the only solution ?
>
>Regards
>
>
>--
>Syed Atif Ali
>D. +971 4 3911914
>F. +971 4 3911915
>___________________________________________
>Your lucky number is 3552664958674928.  Watch for it everywhere.
>
>
>--
>To unsubscribe send an email with subject 'unsubscribe' to 
>pound(at)apsis.ch.
>Please contact roseg(at)apsis.ch for questions.
>http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1157896883000
>
>
>-- 
>To unsubscribe send an email with subject 'unsubscribe' to 
>pound(at)apsis.ch.
>Please contact roseg(at)apsis.ch for questions.
>http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/11571
26758000/1157954219000

Re: [Pound Mailing List] Pound failover
Stefan Lambrev <stefan.lambrev(at)sun-fish.com>
2006-09-11 12:08:54 [ SNIP ]
Hello,

aT wrote:
> Hi ,
>
> Pound provides  great fail over and load balancing aspect to web sites.
> But how people are making Pound redundant ?
> I mean if i have a single pound server serving requests and this one 
> fails , is there a way of automatically shifting load to another pound ?
> is DNS round robin  the only solution ?
>
> Regards
>
For fail-over - two FreeBSD boxes with CARP. Works perfect for me.

-- 
Best Wishes,
Stefan Lambrev
ICQ# 24134177


Re: [Pound Mailing List] Pound failover
Simon Slaytor <sslaytor(at)iom.com>
2006-09-11 18:36:27 [ SNIP ]
Pound 2.1 on OpenBSD 3.9 with pre-empted CARP, works well for me.

aT wrote:
> Hi ,
>
> Pound provides  great fail over and load balancing aspect to web sites.
> But how people are making Pound redundant ?
> I mean if i have a single pound server serving requests and this one 
> fails , is there a way of automatically shifting load to another pound ?
> is DNS round robin  the only solution ?
>
> Regards
>
>


RE: [Pound Mailing List] Pound failover
"Dean" <deanmaunder(at)telstra.com>
2006-09-13 23:41:45 [ SNIP ]
Our Pound config rarely changes, so it's a manual thing, Im sure you could
use rsync if necessary, or if your config changes alot.
The heartbeat software manages the virtual IP and also the pound stop/starts
if a server fails.  It's a fairly simple configuration, but we haven't had
any issues with it. 

-----Original Message-----
From: John Snowdon [mailto:J.P.Snowdon(at)newcastle.ac.uk] 
Sent: Monday, 11 September 2006 8:02 PM
To: pound(at)apsis.ch
Subject: RE: [Pound Mailing List] Pound failover

I'd be interested to hear further information on this setup - it's something
I will be attempting shortly to move away from the 'pound as single point of
failure' situation at present.

How do you manage your pound configuration and restarts across the multiple
servers?

 John Snowdon - IT Support Specialist
-==============-
 School of Medical Education Development  Faculty of Medical Sciences
Computing  University of Newcastle


>-----Original Message-----
>From: Dean [mailto:deanmaunder(at)telstra.com] 
>Sent: 11 September 2006 06:57
>To: pound(at)apsis.ch
>Subject: RE: [Pound Mailing List] Pound failover
>
>
>We use heartbeat (www.ultramonkey.org)  to provide a virtual 
>IP for pound to
>run on two separate servers.
>
>
>-----Original Message-----
>From: aT [mailto:pakistan(at)gmail.com] 
>Sent: Monday, 11 September 2006 12:01 AM
>To: pound(at)apsis.ch
>Subject: [Pound Mailing List] Pound failover
>
>Hi ,
>
>Pound provides  great fail over and load balancing aspect to web sites.
>But how people are making Pound redundant ?
>I mean if i have a single pound server serving requests and 
>this one fails ,
>is there a way of automatically shifting load to another pound ?
>is DNS round robin  the only solution ?
>
>Regards
>
>
>--
>Syed Atif Ali
>D. +971 4 3911914
>F. +971 4 3911915
>___________________________________________
>Your lucky number is 3552664958674928.  Watch for it everywhere.
>
>
>--
>To unsubscribe send an email with subject 'unsubscribe' to 
>pound(at)apsis.ch.
>Please contact roseg(at)apsis.ch for questions.
>http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1157896883000
>
>
>-- 
>To unsubscribe send an email with subject 'unsubscribe' to 
>pound(at)apsis.ch.
>Please contact roseg(at)apsis.ch for questions.
>http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/11571
26758000/1157954219000

-- 
To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
Please contact roseg(at)apsis.ch for questions.
http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1157126758000/1157
968936000


RE: [Pound Mailing List] Www matching
"John Snowdon" <J.P.Snowdon(at)newcastle.ac.uk>
2006-09-19 13:49:23 [ SNIP ]
Hi Tim.. it's a regular expression (man pound); 

HeadRequire     "Host:.*domain.com.*" 

...should get what you want.

 John Snowdon - IT Support Specialist
-==========================================-
 School of Medical Education Development 
 Faculty of Medical Sciences Computing
 University of Newcastle

 Email : j.p.snowdon(at)ncl.ac.uk


>-----Original Message-----
>From: Tim Perrett [mailto:tperrett(at)butlerandtanner.com] 
>Sent: 19 September 2006 11:44
>To: pound(at)apsis.ch
>Subject: [Pound Mailing List] Www matching
>
>
>Hey all
>
>Is there anyway to get pound to match both www.domain.com and 
>domain.com
>addresses?
>
>In lighttpd I would put something like ^(www\.)?domain\.com$ - 
>How can I get
>it to match them both? There doesn't seem to be any 
>documentation on it.
>
>Many thanks
>
>Tim Perrett
>
>
>
>_______________________________________________________________
>_________
>This e-mail has been scanned for all viruses by Star. The
>service is powered by MessageLabs. For more information on a proactive
>anti-virus service working around the clock, around the globe, visit:
>http://www.star.net.uk
>_______________________________________________________________
>_________
>
>-- 
>To unsubscribe send an email with subject 'unsubscribe' to 
>pound(at)apsis.ch.
>Please contact roseg(at)apsis.ch for questions.
>http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1158662658000
>

Re: [Pound Mailing List] Www matching
"Richard Hamilton" <ricky.hamilton(at)btopenworld.com>
2006-09-19 16:58:49 [ SNIP ]
The pattern matching is regular expression based. I would suggest boning up 
on regular expressions.

Regards
Richard


----- Original Message ----- 
From: "Tim Perrett" <tperrett(at)butlerandtanner.com>
To: <pound(at)apsis.ch>
Sent: Tuesday, September 19, 2006 11:44 AM
Subject: [Pound Mailing List] Www matching


> Hey all
>
> Is there anyway to get pound to match both www.domain.com and domain.com
> addresses?
>
> In lighttpd I would put something like ^(www\.)?domain\.com$ - How can I 
> get
> it to match them both? There doesn't seem to be any documentation on it.
>
> Many thanks
>
> Tim Perrett
>
>
>
> ________________________________________________________________________
> This e-mail has been scanned for all viruses by Star. The
> service is powered by MessageLabs. For more information on a proactive
> anti-virus service working around the clock, around the globe, visit:
> http://www.star.net.uk
> ________________________________________________________________________
>
> -- 
> To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
> http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1158662658000
> 



Re: [Pound Mailing List] SVN + Pound
Ondra Kudlik <kepi(at)orthank.net>
2006-09-22 11:20:34 [ SNIP ]
Hi,

I think that svn:// protocol is not http protocol... so you can't
use pound for this. But maybe I'm wrong.

If you want pound in front of subversion server, I think you have to
use apache subversion server and http protocol.

--
 .''`. Ondra 'Kepi' Kudlik
: :' : Debian GNU/Linux User
`. `'
  `-   http://www.nosoftwarepatents.com/cz/m/intro/index.html 


Pá, zář 22, 2006 ve 09:47:17 +0100, Tim Perrett napsal:
> Hey All
> 
> I now have my pound / mongrel / lighty setup working really nicely, its
> probably the best thing we ever did changing over to a pound config!
> 
> One thing I am struggling to get working however is svn serve. It works
> internally no problem using ip:port, but when I try to get people remotely
> to connect (either by direct ip:port or a web address) I just get an error
> saying the server actively refused the connection. Is there an issue with
> using svn:// type addresses and pound? I have SVN serve running on port
> 8200, and I also tried adding a pound config for it...
> 
> Service
>   HeadRequire "Host:.*some.domain.com.*"
>   BackEnd
>     Address 127.0.0.1
>     Port    8200
>   End
> End
> 
> But it still didn't work. Am I missing something here or is it just not
> possible to use svn serve whilst using pound? (To clarify, before we
> switched to using pound I was able do access externally with something like
> svn://some.domain.com:8200)
> 
> Cheers for any help
> 
> Tim

Re: [Pound Mailing List] SVN + Pound
Christian Sell <cse(at)dynabean.de>
2006-09-22 11:24:19 [ SNIP ]
huh? pound is a HTTP proxy, but svn: is not a HTTP-based protocol.

To access subversion through pound, you will have to use WebDAV. I have an
apache intermediary configured behind pound that does the subversion
interfacing.

-C

Zitat von Tim Perrett <tperrett(at)butlerandtanner.com>:

> Hey All
>
> I now have my pound / mongrel / lighty setup working really nicely, its
> probably the best thing we ever did changing over to a pound config!
>
> One thing I am struggling to get working however is svn serve. It works
> internally no problem using ip:port, but when I try to get people remotely
> to connect (either by direct ip:port or a web address) I just get an error
> saying the server actively refused the connection. Is there an issue with
> using svn:// type addresses and pound? I have SVN serve running on port
> 8200, and I also tried adding a pound config for it...
>
> Service
>   HeadRequire "Host:.*some.domain.com.*"
>   BackEnd
>     Address 127.0.0.1
>     Port    8200
>   End
> End
>
> But it still didn't work. Am I missing something here or is it just not
> possible to use svn serve whilst using pound? (To clarify, before we
> switched to using pound I was able do access externally with something like
> svn://some.domain.com:8200)
>
> Cheers for any help
>
> Tim
>
>
>
> ________________________________________________________________________
> This e-mail has been scanned for all viruses by Star. The
> service is powered by MessageLabs. For more information on a proactive
> anti-virus service working around the clock, around the globe, visit:
> http://www.star.net.uk
> ________________________________________________________________________
>
> --
> To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
> Please contact roseg(at)apsis.ch for questions.
> http://www.apsis.ch/pound/pound_list/archive/2006/2006-09/1158914837000
>




Re: [Pound Mailing List] SVN + Pound
Jon Garvin <jgarvin.lists(at)gmail.com>
2006-09-22 17:28:38 [ SNIP ]
You should be able to run svn and pound side by side. What you need to
understand is pound is only an HTTP proxy. Just take out all references
to svn and port 8200 from pound's config, restart it, and make sure that
svn is up and listening to 8200 and you should be good. Or even better
yet, access svn through ssh as I am. Instructions are in the svn manual
online. If you need to proxy the svn traffic off to some other machine
though... that's a different can of worms.

Tim Perrett wrote:
> Hey All
>
> I now have my pound / mongrel / lighty setup working really nicely, its
> probably the best thing we ever did changing over to a pound config!
>
> One thing I am struggling to get working however is svn serve. It works
> internally no problem using ip:port, but when I try to get people remotely
> to connect (either by direct ip:port or a web address) I just get an error
> saying the server actively refused the connection. Is there an issue with
> using svn:// type addresses and pound? I have SVN serve running on port
> 8200, and I also tried adding a pound config for it...
>
> Service
>   HeadRequire "Host:.*some.domain.com.*"
>   BackEnd
>     Address 127.0.0.1
>     Port    8200
>   End
> End
>
> But it still didn't work. Am I missing something here or is it just not
> possible to use svn serve whilst using pound? (To clarify, before we
> switched to using pound I was able do access externally with something like
> svn://some.domain.com:8200)
>
> Cheers for any help
>
> Tim
>
>
>
> ________________________________________________________________________
> This e-mail has been scanned for all viruses by Star. The
> service is powered by MessageLabs. For more information on a proactive
> anti-virus service working around the clock, around the globe, visit:
> http://www.star.net.uk
> ________________________________________________________________________
>
>   


Re: [Pound Mailing List] SVN + Pound
Ted Dunning <tdunning(at)veoh.com>
2006-09-22 19:22:19 [ SNIP ]

Put svn behind a web-dav capable HTTP server like Apache (details are in the
SVN book) and you will be able to route all of your svn traffic through
https URL's that pound will secure for you.


On 9/22/06 8:28 AM, "Jon Garvin" <jgarvin.lists(at)gmail.com> wrote:

> You should be able to run svn and pound side by side. What you need to
> understand is pound is only an HTTP proxy. Just take out all references
> to svn and port 8200 from pound's config, restart it, and make sure that
> svn is up and listening to 8200 and you should be good. Or even better
> yet, access svn through ssh as I am. Instructions are in the svn manual
> online. If you need to proxy the svn traffic off to some other machine
> though... that's a different can of worms.
> 
> Tim Perrett wrote:
>> Hey All
>> 
>> I now have my pound / mongrel / lighty setup working really nicely, its
>> probably the best thing we ever did changing over to a pound config!
>> 
>> One thing I am struggling to get working however is svn serve. It works
>> internally no problem using ip:port, but when I try to get people remotely
>> to connect (either by direct ip:port or a web address) I just get an error
>> saying the server actively refused the connection. Is there an issue with
>> using svn:// type addresses and pound? I have SVN serve running on port
>> 8200, and I also tried adding a pound config for it...
>> 
>> Service
>>   HeadRequire "Host:.*some.domain.com.*"
>>   BackEnd
>>     Address 127.0.0.1
>>     Port    8200
>>   End
>> End
>> 
>> But it still didn't work. Am I missing something here or is it just not
>> possible to use svn serve whilst using pound? (To clarify, before we
>> switched to using pound I was able do access externally with something like
>> svn://some.domain.com:8200)
>> 
>> Cheers for any help
>> 
>> Tim
>> 
>> 
>> 
>> ________________________________________________________________________
>> This e-mail has been scanned for all viruses by Star. The
>> service is powered by MessageLabs. For more information on a proactive
>> anti-virus service working around the clock, around the globe, visit:
>> http://www.star.net.uk
>> ________________________________________________________________________
>> 
>>   
> 


MailBoxer