This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Root-CA: | |
1) openssl genrsa -aes256 -out localhost-root-ca.key 4096 | |
2) openssl req -out localhost-root-ca.csr -key localhost-root-ca.key -new -sha256 | |
CN = localhost | |
-or- | |
CN = fully qualified domain name | |
3) openssl x509 -req -days 3000 -in localhost-root-ca.csr -signkey localhost-root-ca.key -out localhost-root-ca.pem -sha256 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
====== | |
example Savon client for connecting to AutoTask's SOAP API | |
- install savon via `gem install savon` | |
- ensure AUTOTASK_USERNAME and AUTOTASK_PASSWORD environment variables are set | |
===== | |
=end |