All,
 
I just can't seem to get my pound working. (Please see my pound.cfg below).
When my users to go the "172.29.1.22" server, they receive this error message: "The service is not available. Please try again later."
 
As you can see from my pound.cfg, it's supposed to redirect it to a url at one of the two backend servers (which are Linux and have port 4443 for SSL.) 
 
Any idea what I'm doing wrong here?
 
Thank you for any help you're willing to provide.
 
Anne
 
######################################################
ListenHTTP
    Address 172.29.1.222
    Port    80
    xHTTP   1
    HeadRemove "X-SSL-Request"
    HeadRemove "X-Forwarded-For"
    AddHeader  "X-SSL-Request: 1"
End
 
# redirect all requests for /forbidden
Service
  Url         "
http://TTHR3.helpme.org"
  Redirect    "
https://TTHR3.helpme.org/myapp"
End
# Catch-all server(s)
Service
    BackEnd
        Address https://TTRH1.helpme.org:4443:/myapp
        Port 4443
    End
    BackEnd
        Address https://TTRH2.helpme.org:4443/myapp 
        Port 4443
  End
 Session
        Type    IP
        TTL     520
    End
End
###############################################################