server_software()
Returns the lowercase name of the HTTP server software.
# File actionpack/lib/action_dispatch/http/request.rb, line 333 def server_software (get_header("SERVER_SOFTWARE") && /^([a-zA-Z]+)/ =~ get_header("SERVER_SOFTWARE")) ? $1.downcase : nil end