How to know website’s server specs from its url?
You can use these 3 tools
http://toolbar.netcraft.com/site_report?url=google.com
http://builtwith.com/techcrunch.com
http://whatcms.org/?s=wordpress.com
Which lists all the technologies, the website is apparently using.
OR
You can run this command
wget --save-headers google.com
This will save the server header information in an index.html file, which you can open in an editor to view site’s server details.
OR
You can use Curl command like this,
curl -I www.example.com
This will dump the server details like below, Example:
$ curl -I www.google.com