How to install SSL certificate on nginx with PFX file on linux?

0 Let’s extract CRT file using OpenSSL command as follows: Followed by extracting private key file using another OpenSSL command as follows: Sample Server block to map generate CRT and private key files: Aadi AhlawatA freelance web developer with a decade of experience in creating high-quality, scalable web solutions. His expertise spans PHP, WordPress, Node.js, … Read more

MySQL cheat sheet | Brief Summery of MySQL

0 Here is a MySQL cheat sheet that includes almost everything you would want to know about using MySQL: MySQL Commands MySQL Data Types MySQL Statements MySQL Operators MySQL Queries with examples SELECT This statement retrieves data from the specified table. The * wildcard can be used to select all columns. For example: INSERT INTO … Read more

How to center a div using CSS?

0 To center a div element using CSS, you can use the margin: auto and width properties. Here is an example: You can also use the text-align property to center the contents of the div. Here is an example: If you want to center the div vertically as well, you can use the position, top, … Read more

GIT Cheat Sheet

0 What is GIT? A version control system used to keep track of changes in different files. GIT generally used for code management in programming and used for tracking changes in the code files. It is a distributed version control system. Main benefit of git is its great branching system. Developers and different teams can … Read more

Skip to content