I am trying to set up Satis to talk to a private Subversion repository I have installed on my localhost. Because the certificate is self signed, satis is not connecting (I get the message that it could not validate the certificate). Company rules require HTTPS because of the user authentication information, so I can't just switch the repo to HTTP. How do I disable verify peer in Satis?
This is my config for the repo in satis.json:
{
"type": "vcs",
"url": "https://svn.company.com:8443/svn/project/",
"options": {
"ssl": {
"verify_peer": false
}
}
}