LetsEncrypt Windows

LetsEncrypt Windows

LetsEncrypt provide Free SSL with 90 day validity. You need to renew it every 90 days, there are software to

Delete SSL Certificate in IIS

Delete SSL Certificate in IIS

To delete SSL certficate in IIS, 1) Start Internet Information Service (IIS) Manager 2) Click on Server Name (server hostname)

Enable SSL in Haproxy Docker Container

Enable SSL in Haproxy Docker Container

I have a haproxy container running on port 80. This container is started with command docker run -d -p 80:80

Auto Start Nginx on Windows

Auto Start Nginx on Windows

To auto start Nginx on Windows, download http://nssm.cc/download Extract the file, you will find “nssm.exe” file for 32 and 64

Systemd Journal

Systemd Journal

Systemd have its own loggin system called Systemd Journal. It keep track of logs for each service. To see log

Start an application using systemd

Start an application using systemd

systemd is used to start applications on linux systems. In this post, we will create an application and run start

Application Performance Monitor (APM)

Application Performance Monitor (APM)

Application Performance Monitor (APM) is used to monitor application performance. This help you identify problems with your application. If you

rDNS / Reverse DNS / PTR Record

rDNS / Reverse DNS / PTR Record

Reverse DNS record or PTR Record is generally used by mail servers. Usually, the server’s hostname (FQDN – Fully Qualified

serverpilot

serverpilot

serverpilot is a SAAS hosting control panel for web servers. It use nginx as proxy with apache web server as

How to enable gzip on Plesk Nginx

How to enable gzip on Plesk Nginx

To enable gzip on Plesk server with Nginx proxy, go to Plesk > Domains Click on the domain for which

Joomla

Joomla

Joomla is a content Management system written in PHP and MySQL. It is Open Source and free to use. Database

Redirect a folder to another

Redirect a folder to another

To redirect a folder to another using .htaccess, create RedirectMatch 301 ^/OLD_FOLDER/(.*)$ /NEW_FOLDER/$1 Or RewriteEngine On RewriteRule ^OLD_FOLDER/(.*)$ /NEW_FOLDER/$1 [R=301,NC,L]