This is a category where you can read about devops topics like Servers, Deployments, CI/CD etc


January 11, 2021

Installation Of Nginx on Ubuntu 20

This is evident from the post that Nginx is one of the most popular and growing web servers across the globe. Its faster than apache. Let us see how we can install Nginx on Ubuntu, Centos and other platforms. Installation Using Package Manager mkdir nginxcd nginxwget http://nginx.org/download/nginx-1.19.5.tar.gztar -zxvf nginx-1.19.5.tar.gzcd nginx-1.19.5./configuresudo apt-get install build-essentialsudo apt-get install libpcre3 libpcre3-dev zlib1g zlib1g-dev libssl-dev     nginx path prefix: “/usr/local/nginx”nginx binary file: “/usr/local/nginx/sbin/nginx”nginx modules path: “/usr/local/nginx/modules”nginx configuration prefix: “/usr/local/nginx/conf”nginx configuration file: “/usr/local/nginx/conf/nginx.conf”nginx pid file: “/usr/local/nginx/logs/nginx.pid”nginx error log file: “/usr/local/nginx/logs/error.log”nginx http access log file: “/usr/local/nginx/logs/access.log”nginx http client request body temporary files: “client_body_temp”nginx http proxy temporary files: […]
January 6, 2021

Why Nginx is better than Apache?

Apache and Nginx are the two most common open source web servers in the world. Together, they are responsible for serving over 50% of traffic on the internet. Both solutions are capable of handling diverse workloads and working with other software to provide a complete web stack. While Apache and Nginx share many qualities, they should not be thought of as entirely interchangeable. Each excels in its own way and it is important to understand the situations where you may need to reevaluate your web server of choice. Both web servers, in their latest versions, can compete with each other in […]
October 6, 2020

How to use GIT to increase productivity

We as a developer know the importance of GIT in our day to day life. Many of us use GIT for development but most of us never think beyond commit, push and pull. So, the main question is – Are we using GIT to its full potential? Are we thinking beyond GIT PUSH, PULL & COMMIT? In this article, we will see how can we become a pro in using GIT and make most out of GIT so that we can make our life as a developer more productive. What is Git and how it works? GIT is a system to […]