Loading...

Follow My Randomness.
Blog.

A compilation of random bits of the inner me, my grab-bag of everything and anything that catches my eye, my open journal.
#info #searches #websites #thoughts #highlights #questions #answers #reading #travel #places #glasgow-as-i-go #photo #video #watch #tech #shopping #bookmarked All Tags
scribbling in other   lingos:  PL  RU  UA 

#webmastertools(5)


14 Sep 2024 20:42

Q: Is there a command on Linux Mint to find out which server software (Apache, Nginx, Litespeed, etc.) is running on my website?

A: To check the server header of a website, use the curl command. Open your terminal and type:

curl -I http://yourwebsite.com

Replace yourwebsite.com with your website's URL. You can use both http:// and https:// depending on whether your website uses HTTPS. For example:

curl -I http://fmr.life

In the response, look for the line starting with "Server:". This line will indicate which server software your website is running on.

Looks Like Publii Might Fix HTML Errors When Processing and Generating Your Website Files

28 Jul 2024 20:38

This might be old news for some (or most?) Publii enthusiasts, but since I’ve just stumbled upon it and this blog is my own space, I’m going to note it here. It turns out that Publii’s nifty processing magic does a pretty solid job of fixing HTML errors (or at least some of them) behind the scenes. I did a bit of playing around by inserting some <div>, <a>, and <span> tags into the files of the Publii theme I’m using and then “forgetting” to close them with </div>, </a>, and </span>. Guess what? The resulting HTML generated by Publii had all the correct closing tags in all the right places.

Nice to know.