README 690 B

12345678910111213141516
  1. Authentication methods for Haskell web applications.
  2. Note for Rpxnow:
  3. By default on some (all?) installs wget does not come with root certificates
  4. for SSL. If this is the case then Web.Authenticate.Rpxnow.authenticate will
  5. fail as wget cannot establish a secure connection to rpxnow's servers.
  6. A simple *nix solution, if potentially insecure (man in the middle attacks as
  7. you are downloading the certs) is to grab a copy of the certs extracted from
  8. those that come with firefox, hosted by CURL at
  9. http://curl.haxx.se/ca/cacert.pem , put them somewhere (for ex,
  10. ~/.wget/cacert.pem) and then edit your ~/.wgetrc to include:
  11. ca_certificate=~/.wget/cacert.pem
  12. This should fix the problem.