I put a file named " soap/property" in my download path, for example:
- lib/
- foo.rb
- foo/
- bar.rb
- soap/
- property
And put this in a file:
client.protocol.http.ssl_config.verify_mode = OpenSSL::SSL::VERIFY_NONE
Alternatively, if you have multiple parameters with the same prefix, you can use the group syntax:
[client.protocol.http]
ssl_config.verify_mode = OpenSSL::SSL::VERIFY_NONE
...
source
share