I’ve started to create a very basic rails app. It basically outputs
the body of an incoming HTTP PUT request to the console.
Unfortunately, it only handles HTTP requests and completely ignores
HTTPS requests.
Do I have anything special to my Rails 3 routes.rb. It currently looks
like this:
PutTest::Application.routes.draw do
controller :put_test do
match ‘put’, :to => :update, :via => [:put]
end
end
I don’t see the controller handling incoming HTTPS PUT requests.
Everything works fine with HTTP PUT requests.