Sarathlal N

Identify remote web server

When hosting applications, often I want to get the details of remote servers.

We can easily find out essential detail of server with a single command.

Use curl command with the -I option to make a HEAD request and see the HTTP headers.

curl -I http://example.com

The result will look like below one.

HTTP/1.1 200 OK
Content-type: text/html
Content-Length: 0
Date: Mon, 28 Jan 2008 08:53:54 GMT
Server: lighttpd

Note : You have to install curl before using curl commands.

Recent Posts

  1. Automating Release Generation with GitHub Actions
  2. WP CLI Commands to Bulk Delete Entries in WordPress Database
  3. Split a Single CSV File into Multiple Files Using the Split Command - Bash
  4. Migrating code repo from BitBucket to GitHub
  5. Streamlining Development - Our Journey with Git, Bitbucket, and Jira

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.