# File lib/ovh/rest.rb, line 27
      def build_http_object(host, port)
        if ENV['https_proxy']
          proxy = URI.parse(ENV['https_proxy'])
          Net::HTTP::Proxy(proxy.host, proxy.port).new(host, port)
        else
          Net::HTTP.new(host, port)
        end
      end