Skip to content

Commit

Permalink
Merge pull request #810 from tsuyo/patch-1
Browse files Browse the repository at this point in the history
Add :use_ssl=>true to extconf.rb
  • Loading branch information
unbit committed Jan 14, 2015
2 parents b752d74 + 0276d2a commit aa5e2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/uwsgi/extconf.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'net/http'

Net::HTTP.start("uwsgi.it") do |http|
Net::HTTP.start("uwsgi.it", :use_ssl=>true) do |http|
resp = http.get("/install")
open("install.sh", "wb") do |file|
file.write(resp.body)
Expand Down

0 comments on commit aa5e2a2

Please sign in to comment.