I have been getting a lot these in my log which is causing a lot of problems. Im not even able to access certain pages in my RoR application. Any ideas?
Started GET "/fastenv" for 98.126.72.138 at 2011-05-25 08:45:37 +0000
ActionController::RoutingError (No route matches "/fastenv"):
Started GET "/fastenv" for 98.126.88.250 at 2011-05-25 08:46:02 +0000
ActionController::RoutingError (No route matches "/fastenv"):
Started GET "/fastenv" for 98.126.88.250 at 2011-05-25 08:46:11 +0000
ActionController::RoutingError (No route matches "/fastenv"):
Started GET "/fastenv" for 98.126.131.74 at 2011-05-25 08:46:39 +0000
ActionController::RoutingError (No route matches "/fastenv"):
Started GET "/fastenv" for 98.126.88.250 at 2011-05-25 08:47:24 +0000
ActionController::RoutingError (No route matches "/fastenv"):
Started GET "/fastenv" for 98.126.131.74 at 2011-05-25 08:47:24 +0000
ActionController::RoutingError (No route matches "/fastenv"):
Pls help!开发者_运维百科
These /fastenv requests seem to come from some spammer-like activities. You may create this file in your public folder (to save your server from trying to match a controller and action each time), or just ignore these errors.
You should not be scared by these errors. They are nothing unusual in the big, bad Internet. Your application is just scanned by someone in search for some exploitable errors.
You don't have to do anything. Just write your code with security in mind.
About your 500 error. There MUST be something in the logfile, unless the request has not hit your Rails application. Do you have any other server in front of your app? Apache? Nginx? Check the logfiles created by these servers.
精彩评论