class Monit::HTTPD

The HTTPD section from the Monit XML

Attributes

address[R]
port[R]
ssl[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/monit/httpd.rb, line 6
def initialize(options = {})
  @address = options["address"]
  @port    = options["port"]
  @ssl     = options["ssl"] == "1" ? true : false
end