Instructions on how to setup a secured Jenkins CI on a Mac.
All of these operations are done with your admin user.
Install the command line developer tools.
| files: | |
| "/opt/elasticbeanstalk/support/conf/sidekiq.conf": | |
| mode: "000755" | |
| content: | | |
| description "Elastic Beanstalk Sidekiq Upstart Manager" | |
| start on runlevel [2345] | |
| stop on runlevel [06] | |
| # explained above | |
| respawn | |
| respawn limit 3 30 |
| ### lib/ruby_ext.rb | |
| Net::SMTP.class_eval do | |
| def initialize_with_timeouts(*args) | |
| initialize_without_timeouts(*args) | |
| @open_timeout = Emailer::OpenTimeout | |
| @read_timeout = Emailer::ReadTimeout | |
| end | |
| alias_method_chain :initialize, :timeouts | |
| end | |