# File lib_ctrl/rucy/params.rb, line 882
    def virtual_host=(new_host)
      case (new_host)
      when String, NilClass
        # nothing to do.
      else
        raise "not allowed host: #{new_host.inspect}"
      end
      @attrs['virtual_host'] = new_host
    end